summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorJoerg Thalheim <joerg@thalheim.io>2017-11-07 12:36:48 +0000
committerJoerg Thalheim <joerg@thalheim.io>2017-11-07 13:14:44 +0000
commit3339a7dc7c047c79d71ea58f98cd9817612aa435 (patch)
tree7e75d7edf4b9e982d90d3929441bf9e127df0a16 /pkgs/top-level
parentb9a42797ffe8819132c9593a7b899fffa0bb0cb7 (diff)
downloadnixlib-3339a7dc7c047c79d71ea58f98cd9817612aa435.tar
nixlib-3339a7dc7c047c79d71ea58f98cd9817612aa435.tar.gz
nixlib-3339a7dc7c047c79d71ea58f98cd9817612aa435.tar.bz2
nixlib-3339a7dc7c047c79d71ea58f98cd9817612aa435.tar.lz
nixlib-3339a7dc7c047c79d71ea58f98cd9817612aa435.tar.xz
nixlib-3339a7dc7c047c79d71ea58f98cd9817612aa435.tar.zst
nixlib-3339a7dc7c047c79d71ea58f98cd9817612aa435.zip
python.pkgs.textfixtures: 4.5.0 -> 5.3.0
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix25
1 files changed, 1 insertions, 24 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 8cba91324a08..2cfe3f6087fb 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -21809,30 +21809,7 @@ EOF
     };
   };
 
-  testfixtures = buildPythonPackage rec {
-    name = "testfixtures-${version}";
-    version = "4.5.0";
-
-    src = pkgs.fetchurl {
-      url = "mirror://pypi/t/testfixtures/testfixtures-${version}.tar.gz";
-      sha256 = "0my8zq9d27mc7j78pz9971cn5wz6zi4vxlqa50szr2vq9j2xxkll";
-    };
-
-    buildInputs = with self; [ nose mock manuel ];
-
-    checkPhase = ''
-      nosetests -v
-    '';
-
-    # Test suite seems broken
-    # TypeError: TestSuite() missing 1 required positional argument: 'm'
-    # Haven't checked with newer version
-    doCheck = false;
-
-    meta = with stdenv.lib; {
-      homepage = "https://github.com/Simplistix/testfixtures";
-    };
-  };
+  testfixtures = callPackage ../development/python-modules/testfixtures {};
 
   tissue = buildPythonPackage rec {
     name = "tissue-0.9.2";