about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/graspologic/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/graspologic/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/graspologic/default.nix49
1 files changed, 49 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/graspologic/default.nix b/nixpkgs/pkgs/development/python-modules/graspologic/default.nix
new file mode 100644
index 000000000000..4fd6ccf19c57
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/graspologic/default.nix
@@ -0,0 +1,49 @@
+{ lib
+, buildPythonPackage
+, isPy27
+, fetchFromGitHub
+, pytestCheckHook
+, pytestcov
+, hyppo
+, matplotlib
+, networkx
+, numpy
+, scikitlearn
+, scipy
+, seaborn
+}:
+
+buildPythonPackage rec {
+  pname = "graspologic";
+  version = "0.3";
+
+  disabled = isPy27;
+
+  src = fetchFromGitHub {
+    owner = "microsoft";
+    repo = "graspologic";
+    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;  # changing to `licenses.mit` in next release
+    maintainers = with maintainers; [ bcdarwin ];
+  };
+}