seaborn-data: init at unstable-2023-01-26

This commit is contained in:
Maksym Balatsko 2023-09-20 23:48:18 -07:00 committed by Yt
parent 35892c0b59
commit c585510601
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ lib, newScope, fetchFromGitHub, unzip, stdenvNoCC }:
let
base = {
version = "unstable-2023-01-26";
dontBuild = true;
meta = with lib; {
description = "Data repository for seaborn examples.";
homepage = "https://github.com/mwaskom/seaborn-data";
platforms = platforms.all;
maintainers = with maintainers; [ mbalatsko ];
};
};
makeSeabornDataPackage = {pname, hash}:
let
src = fetchFromGitHub {
owner = "mwaskom";
repo = "seaborn-data";
rev = "2b29313169bf8dfa77d8dc930f7bd3eba559a906";
inherit hash;
sparseCheckout = [ "${pname}.csv" ];
};
in
stdenvNoCC.mkDerivation (base // {
inherit pname src;
version = base.version;
installPhase = ''
runHook preInstall
mkdir -p $out
cp ${pname}.csv $out/${pname}.csv
runHook postInstall
'';
});
in
lib.makeScope newScope (self: {
exercise = makeSeabornDataPackage ({
pname = "exercise";
hash = "sha256-icoc2HkG303A8hCoW6kZxD5qhOKIpdxErLr288o04wE=";
});
})

View file

@ -6095,6 +6095,8 @@ with pkgs;
nltk-data = callPackage ../tools/text/nltk_data { };
seaborn-data = callPackage ../tools/misc/seaborn-data { };
nodepy-runtime = with python3.pkgs; toPythonApplication nodepy-runtime;
nixpkgs-pytools = with python3.pkgs; toPythonApplication nixpkgs-pytools;