about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-06-08 19:49:40 -0500
committerGitHub <noreply@github.com>2020-06-08 19:49:40 -0500
commit482a82b06248119fa3c19f36c55cae8ffbca099f (patch)
treedf2b5e55c2d793110e70601ecade52206a08b7c2 /pkgs/development
parent9b7cb6cd13e134daf70a2ccd642f055cd906b14a (diff)
parent2aa93eb730653216892bedf8387f945cc99bab5e (diff)
downloadnixlib-482a82b06248119fa3c19f36c55cae8ffbca099f.tar
nixlib-482a82b06248119fa3c19f36c55cae8ffbca099f.tar.gz
nixlib-482a82b06248119fa3c19f36c55cae8ffbca099f.tar.bz2
nixlib-482a82b06248119fa3c19f36c55cae8ffbca099f.tar.lz
nixlib-482a82b06248119fa3c19f36c55cae8ffbca099f.tar.xz
nixlib-482a82b06248119fa3c19f36c55cae8ffbca099f.tar.zst
nixlib-482a82b06248119fa3c19f36c55cae8ffbca099f.zip
Merge pull request #89790 from formbay/pytest_dependency
pythonPackages.pytest-dependency: 0.4.0 -> 0.5.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/pytest-dependency/default.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/pytest-dependency/default.nix b/pkgs/development/python-modules/pytest-dependency/default.nix
index 13806781125e..9e570a801f99 100644
--- a/pkgs/development/python-modules/pytest-dependency/default.nix
+++ b/pkgs/development/python-modules/pytest-dependency/default.nix
@@ -1,23 +1,14 @@
 { stdenv, buildPythonPackage, fetchPypi, fetchpatch, pytest }:
 
 buildPythonPackage rec {
-  version = "0.4.0";
+  version = "0.5.1";
   pname = "pytest-dependency";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "bda0ef48e6a44c091399b12ab4a7e580d2dd8294c222b301f88d7d57f47ba142";
+    sha256 = "c2a892906192663f85030a6ab91304e508e546cddfe557d692d61ec57a1d946b";
   };
 
-  patches = [
-    # Fix tests for pytest>=4.2.0. Remove with the next release
-    (fetchpatch {
-      url = "https://github.com/RKrahl/pytest-dependency/commit/089395bf77e629ee789666361ee12395d840252c.patch";
-      sha256 = "1nkha2gndrr3mx11kx2ipxhphqd6wr25hvkrfwzyrispqfhgl0wm";
-      excludes = [ "doc/src/changelog.rst" ];
-    })
-  ];
-
   propagatedBuildInputs = [ pytest ];
 
   checkInputs = [ pytest ];