summary refs log tree commit diff
path: root/pkgs/top-level/python-packages.nix
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2018-05-12 10:38:11 -0400
committerBenjamin Hipple <bhipple@protonmail.com>2018-05-13 11:33:41 -0400
commit68573a61a932050815f64a1150c417f903a3dd59 (patch)
treee2957c40c6353674bb6cf16dab83334c16638812 /pkgs/top-level/python-packages.nix
parent6131989a7d606c5a33a9a6a91ea55ac37cf0c95f (diff)
downloadnixlib-68573a61a932050815f64a1150c417f903a3dd59.tar
nixlib-68573a61a932050815f64a1150c417f903a3dd59.tar.gz
nixlib-68573a61a932050815f64a1150c417f903a3dd59.tar.bz2
nixlib-68573a61a932050815f64a1150c417f903a3dd59.tar.lz
nixlib-68573a61a932050815f64a1150c417f903a3dd59.tar.xz
nixlib-68573a61a932050815f64a1150c417f903a3dd59.tar.zst
nixlib-68573a61a932050815f64a1150c417f903a3dd59.zip
smmap2: init at 2.0.3
This commit adds smmap2, which is a separate pypi package from the existing
smmap 0.9.0, though they both come from the same repo. It also moves smmap into
the new python modules location.
Diffstat (limited to 'pkgs/top-level/python-packages.nix')
-rw-r--r--pkgs/top-level/python-packages.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index a5a24e42865a..7e1ece5c77c2 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -14241,18 +14241,9 @@ in {
 
   tqdm = callPackage ../development/python-modules/tqdm { };
 
-  smmap = buildPythonPackage rec {
-    name = "smmap-0.9.0";
-    disabled = isPyPy;  # This fails the tests if built with pypy
-    meta.maintainers = with maintainers; [ ];
-
-    buildInputs = with self; [ nosexcover ];
+  smmap = callPackage ../development/python-modules/smmap { };
 
-    src = pkgs.fetchurl {
-      url = "mirror://pypi/s/smmap/${name}.tar.gz";
-      sha256 = "0qlx25f6n2n9ff37w9gg62f217fzj16xlbh0pkz0lpxxjys64aqf";
-    };
-  };
+  smmap2 = callPackage ../development/python-modules/smmap2 { };
 
   traits = buildPythonPackage rec {
     name = "traits-${version}";