about summary refs log tree commit diff
path: root/pkgs/development/python2-modules
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-12-09 08:10:55 -0800
committerRobert Schütz <nix@dotlambda.de>2022-12-09 08:10:55 -0800
commit0cc6df3f8fdfc6406cbb06440c159f47761c874a (patch)
tree5f2b8e5264d3599d310f499d4b1b217968faa484 /pkgs/development/python2-modules
parent5eb43616fece393fd7cf80cbbd20b1ce41dae9b6 (diff)
downloadnixlib-0cc6df3f8fdfc6406cbb06440c159f47761c874a.tar
nixlib-0cc6df3f8fdfc6406cbb06440c159f47761c874a.tar.gz
nixlib-0cc6df3f8fdfc6406cbb06440c159f47761c874a.tar.bz2
nixlib-0cc6df3f8fdfc6406cbb06440c159f47761c874a.tar.lz
nixlib-0cc6df3f8fdfc6406cbb06440c159f47761c874a.tar.xz
nixlib-0cc6df3f8fdfc6406cbb06440c159f47761c874a.tar.zst
nixlib-0cc6df3f8fdfc6406cbb06440c159f47761c874a.zip
python2Packages.pytest-runner: remove
Diffstat (limited to 'pkgs/development/python2-modules')
-rw-r--r--pkgs/development/python2-modules/pytest-runner/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/development/python2-modules/pytest-runner/default.nix b/pkgs/development/python2-modules/pytest-runner/default.nix
deleted file mode 100644
index bea83146c37d..000000000000
--- a/pkgs/development/python2-modules/pytest-runner/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, buildPythonPackage, fetchPypi, setuptools-scm, pytest }:
-
-buildPythonPackage rec {
-  pname = "pytest-runner";
-  version = "5.2";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "96c7e73ead7b93e388c5d614770d2bae6526efd997757d3543fe17b557a0942b";
-  };
-
-  nativeBuildInputs = [ setuptools-scm pytest ];
-
-  postPatch = ''
-    rm pytest.ini
-  '';
-
-  checkPhase = ''
-    py.test tests
-  '';
-
-  # Fixture not found
-  doCheck = false;
-
-  meta = with lib; {
-    description = "Invoke py.test as distutils command with dependency resolution";
-    homepage = "https://github.com/pytest-dev/pytest-runner";
-    license = licenses.mit;
-  };
-}