aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/graspy/default.nix
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-12-09 18:55:19 +0000
committerMx Kookie <kookie@spacekookie.de>2020-12-09 18:55:19 +0000
commit80d90d9b204f7c17912740f9f414fe5d59f293ba (patch)
tree5f2065a06e724270610760d59d01c6888b375a46 /infra/libkookie/nixpkgs/pkgs/development/python-modules/graspy/default.nix
parent3a31a84c7d3e589035ad08499206aac44a81f424 (diff)
parent83cbad92d73216bb0d9187c56cce0b91f9121d5a (diff)
Merge commit '83cbad92d73216bb0d9187c56cce0b91f9121d5a' into main
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/development/python-modules/graspy/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/development/python-modules/graspy/default.nix49
1 files changed, 0 insertions, 49 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/development/python-modules/graspy/default.nix b/infra/libkookie/nixpkgs/pkgs/development/python-modules/graspy/default.nix
deleted file mode 100644
index 0281e6a97341..000000000000
--- a/infra/libkookie/nixpkgs/pkgs/development/python-modules/graspy/default.nix
+++ /dev/null
@@ -1,49 +0,0 @@
-{ lib
-, buildPythonPackage
-, isPy27
-, fetchFromGitHub
-, pytestCheckHook
-, pytestcov
-, hyppo
-, matplotlib
-, networkx
-, numpy
-, scikitlearn
-, scipy
-, seaborn
-}:
-
-buildPythonPackage rec {
- pname = "graspy";
- version = "0.3";
-
- disabled = isPy27;
-
- src = fetchFromGitHub {
- owner = "neurodata";
- repo = pname;
- rev = "v${version}";
- sha256 = "0lab76qiryxvwl6zrcikhnxil1xywl0wkkm2vzi4v9mdzpa7w29r";
- };
-
- propagatedBuildInputs = [
- hyppo
- matplotlib
- networkx
- numpy
- scikitlearn
- scipy
- seaborn
- ];
-
- checkInputs = [ pytestCheckHook pytestcov ];
- pytestFlagsArray = [ "tests" "--ignore=docs" ];
- disabledTests = [ "gridplot_outputs" ];
-
- meta = with lib; {
- homepage = "https://graspy.neurodata.io";
- description = "A package for graph statistical algorithms";
- license = licenses.asl20;
- maintainers = with maintainers; [ bcdarwin ];
- };
-}