about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-services
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2021-12-31 08:10:25 +0000
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-01-01 02:10:53 +0100
commit2cae050057e56b5e33ddfc28449013061eb3b604 (patch)
treed9335d65559283f17ccecc69a55408c52dc69779 /pkgs/development/python-modules/pytest-services
parent4beaf5301df522276e169ab74614134ec9f5ecd3 (diff)
python2Packages: remove superfluous overrides
Since Python 2 is not supported anymore we only keep those overrides
which are used by leaf packages.
Diffstat (limited to 'pkgs/development/python-modules/pytest-services')
-rw-r--r--pkgs/development/python-modules/pytest-services/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pytest-services/default.nix b/pkgs/development/python-modules/pytest-services/default.nix
index 4f2a577bb4db7..41890215025ca 100644
--- a/pkgs/development/python-modules/pytest-services/default.nix
+++ b/pkgs/development/python-modules/pytest-services/default.nix
@@ -6,7 +6,6 @@
 , psutil
 , pytest
 , setuptools-scm
-, subprocess32 ? null
 , toml
 , zc_lockfile
 }:
@@ -31,7 +30,7 @@ buildPythonPackage rec {
     requests
     psutil
     zc_lockfile
-  ] ++ lib.optional (!isPy3k) subprocess32;
+  ];
 
   # no tests in PyPI tarball
   doCheck = false;