mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
seaborn-data: init at unstable-2023-01-26
This commit is contained in:
parent
35892c0b59
commit
c585510601
41
pkgs/tools/misc/seaborn-data/default.nix
Normal file
41
pkgs/tools/misc/seaborn-data/default.nix
Normal 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=";
|
||||
});
|
||||
})
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user