about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-11-22 07:55:39 +0000
committerGitHub <noreply@github.com>2017-11-22 07:55:39 +0000
commita1968c3a25a92764a547e543f155cdca238ec127 (patch)
treef77b13fb9a75f0030ececeb5856664d04ff30b4c /pkgs/development/python-modules
parent76ae77e37c6f516a71913ec0a454dac32b718cab (diff)
parentc69f3eda3a9e8540a9a80670fc2a1af2f5e5534f (diff)
downloadnixlib-a1968c3a25a92764a547e543f155cdca238ec127.tar
nixlib-a1968c3a25a92764a547e543f155cdca238ec127.tar.gz
nixlib-a1968c3a25a92764a547e543f155cdca238ec127.tar.bz2
nixlib-a1968c3a25a92764a547e543f155cdca238ec127.tar.lz
nixlib-a1968c3a25a92764a547e543f155cdca238ec127.tar.xz
nixlib-a1968c3a25a92764a547e543f155cdca238ec127.tar.zst
nixlib-a1968c3a25a92764a547e543f155cdca238ec127.zip
Merge pull request #31925 from jluttine/update-pytest-flake8
pytest-flake8: 0.8.1 -> 0.9.1
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pytest-flake8/default.nix14
1 files changed, 2 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/pytest-flake8/default.nix b/pkgs/development/python-modules/pytest-flake8/default.nix
index b39737ea7019..2b615e5820e9 100644
--- a/pkgs/development/python-modules/pytest-flake8/default.nix
+++ b/pkgs/development/python-modules/pytest-flake8/default.nix
@@ -3,7 +3,7 @@
 buildPythonPackage rec {
   name = "${pname}-${version}";
   pname = "pytest-flake8";
-  version = "0.8.1";
+  version = "0.9.1";
 
   # although pytest is a runtime dependency, do not add it as
   # propagatedBuildInputs in order to allow packages depend on another version
@@ -13,19 +13,9 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "1za5i09gz127yraigmcl443w6149714l279rmlfxg1bl2kdsc45a";
+    sha256 = "0032l4x2i5qn7ikaaw0kjs9f4ccpas21j564spyxwmx50wnhf5p7";
   };
 
-  patches = [
-    # Fix pytest strict mode (pull request #24)
-    # https://github.com/tholo/pytest-flake8/pull/24
-    (fetchpatch {
-      name = "fix-compatibility-with-pytest-strict-mode.patch";
-      url = "https://github.com/tholo/pytest-flake8/commit/434e1b07b4b77bfe1ddb9b2b54470c6c3815bb1a.patch";
-      sha256 = "0idwgkwwysx2cibnykd81yxrgqzkpf42j99jmpnanqzi99qnc3wx";
-    })
-  ];
-
   checkPhase = ''
     pytest --ignore=nix_run_setup.py .
   '';