summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope_testrunner
diff options
context:
space:
mode:
authoradisbladis <adis@blad.is>2017-08-09 12:18:44 +0800
committerFrederik Rietdijk <fridh@fridh.nl>2017-08-09 14:50:57 +0200
commit9c5f6f9528817a633a355c95f62cf6307f2b5a4c (patch)
tree695435a2abd5e82a67c44eddd65c64dae2242c38 /pkgs/development/python-modules/zope_testrunner
parentfd6e51d5505c128c2051ddcbcb395d12c0d94299 (diff)
downloadnixpkgs-9c5f6f9528817a633a355c95f62cf6307f2b5a4c.tar
nixpkgs-9c5f6f9528817a633a355c95f62cf6307f2b5a4c.tar.gz
nixpkgs-9c5f6f9528817a633a355c95f62cf6307f2b5a4c.tar.bz2
nixpkgs-9c5f6f9528817a633a355c95f62cf6307f2b5a4c.tar.lz
nixpkgs-9c5f6f9528817a633a355c95f62cf6307f2b5a4c.tar.xz
nixpkgs-9c5f6f9528817a633a355c95f62cf6307f2b5a4c.tar.zst
nixpkgs-9c5f6f9528817a633a355c95f62cf6307f2b5a4c.zip
pythonPackages.zope_testrunner: Remove subunit dependency, no longer necessary since latest release
Diffstat (limited to 'pkgs/development/python-modules/zope_testrunner')
-rw-r--r--pkgs/development/python-modules/zope_testrunner/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/zope_testrunner/default.nix b/pkgs/development/python-modules/zope_testrunner/default.nix
index 6d4d8be4856..7f2af64d915 100644
--- a/pkgs/development/python-modules/zope_testrunner/default.nix
+++ b/pkgs/development/python-modules/zope_testrunner/default.nix
@@ -6,7 +6,6 @@
 , zope_exceptions
 , zope_testing
 , six
-, subunit
 }:
 
 
@@ -21,7 +20,7 @@ buildPythonPackage rec {
     extension = "zip";
   };
 
-  propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ] ++ stdenv.lib.optional (!isPy3k) subunit;
+  propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ];
 
   meta = with stdenv.lib; {
     description = "A flexible test runner with layer support";