summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Darwin <bcdarwin@gmail.com>2020-09-30 12:25:54 -0400
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-10-25 10:17:35 +0100
commit8e17389a56530f6f55812b2beb7447d2a753aae7 (patch)
tree384a7a5c3781a9b8b4037cf569cc11324cc5e506
parent484178cca62fffb90bc6d58c0d46682daadd4201 (diff)
downloadnixpkgs-8e17389a56530f6f55812b2beb7447d2a753aae7.tar
nixpkgs-8e17389a56530f6f55812b2beb7447d2a753aae7.tar.gz
nixpkgs-8e17389a56530f6f55812b2beb7447d2a753aae7.tar.bz2
nixpkgs-8e17389a56530f6f55812b2beb7447d2a753aae7.tar.lz
nixpkgs-8e17389a56530f6f55812b2beb7447d2a753aae7.tar.xz
nixpkgs-8e17389a56530f6f55812b2beb7447d2a753aae7.tar.zst
nixpkgs-8e17389a56530f6f55812b2beb7447d2a753aae7.zip
graspy: rename to graspologic
-rw-r--r--pkgs/development/python-modules/graspologic/default.nix (renamed from pkgs/development/python-modules/graspy/default.nix)8
-rw-r--r--pkgs/top-level/python-packages.nix2
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/graspy/default.nix b/pkgs/development/python-modules/graspologic/default.nix
index 0281e6a9734..4fd6ccf19c5 100644
--- a/pkgs/development/python-modules/graspy/default.nix
+++ b/pkgs/development/python-modules/graspologic/default.nix
@@ -14,14 +14,14 @@
 }:
 
 buildPythonPackage rec {
-  pname = "graspy";
+  pname = "graspologic";
   version = "0.3";
 
   disabled = isPy27;
 
   src = fetchFromGitHub {
-    owner = "neurodata";
-    repo = pname;
+    owner = "microsoft";
+    repo = "graspologic";
     rev = "v${version}";
     sha256 = "0lab76qiryxvwl6zrcikhnxil1xywl0wkkm2vzi4v9mdzpa7w29r";
   };
@@ -43,7 +43,7 @@ buildPythonPackage rec {
   meta = with lib; {
     homepage = "https://graspy.neurodata.io";
     description = "A package for graph statistical algorithms";
-    license = licenses.asl20;
+    license = licenses.asl20;  # changing to `licenses.mit` in next release
     maintainers = with maintainers; [ bcdarwin ];
   };
 }
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index b501610df18..9df155600bd 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -2574,7 +2574,7 @@ in {
 
   grappelli_safe = callPackage ../development/python-modules/grappelli_safe { };
 
-  graspy = callPackage ../development/python-modules/graspy { };
+  graspologic = callPackage ../development/python-modules/graspologic { };
 
   greatfet = callPackage ../development/python-modules/greatfet { };