about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorRobert Schütz <rschuetz17@gmail.com>2018-07-30 13:05:55 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-07-30 13:05:55 +0200
commitf5811cadc58afa71846b1ae6eab3dcc636a3abfd (patch)
tree3992c5a9f13b2a19dc73c2b276ad6c97fed75969 /pkgs/development/python-modules
parent86d7d96da2d03c645ada36906d26b142f08196e1 (diff)
downloadnixlib-f5811cadc58afa71846b1ae6eab3dcc636a3abfd.tar
nixlib-f5811cadc58afa71846b1ae6eab3dcc636a3abfd.tar.gz
nixlib-f5811cadc58afa71846b1ae6eab3dcc636a3abfd.tar.bz2
nixlib-f5811cadc58afa71846b1ae6eab3dcc636a3abfd.tar.lz
nixlib-f5811cadc58afa71846b1ae6eab3dcc636a3abfd.tar.xz
nixlib-f5811cadc58afa71846b1ae6eab3dcc636a3abfd.tar.zst
nixlib-f5811cadc58afa71846b1ae6eab3dcc636a3abfd.zip
python.pkgs.pytest-flake8: 1.0.1 -> 1.0.2 (#44215)
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pytest-flake8/default.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/pytest-flake8/default.nix b/pkgs/development/python-modules/pytest-flake8/default.nix
index 2ad44c4e8066..558fe32b909d 100644
--- a/pkgs/development/python-modules/pytest-flake8/default.nix
+++ b/pkgs/development/python-modules/pytest-flake8/default.nix
@@ -2,7 +2,7 @@
 
 buildPythonPackage rec {
   pname = "pytest-flake8";
-  version = "1.0.1";
+  version = "1.0.2";
 
   # although pytest is a runtime dependency, do not add it as
   # propagatedBuildInputs in order to allow packages depend on another version
@@ -12,16 +12,13 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "0s5fdivrmhjf6ybr6m2qb1h8hndv2jh2ir29qv36lhy9b7sc9kg5";
+    sha256 = "c740ad6aa19e3958947d2118f70bed218caf1d2097039fb7318573a2a72f89a1";
   };
 
   checkPhase = ''
-    pytest . -k "not test_mtime_caching"
+    pytest .
   '';
 
-  # https://github.com/tholo/pytest-flake8/issues/49
-  doCheck = false;
-
   meta = {
     description = "py.test plugin for efficiently checking PEP8 compliance";
     homepage = https://github.com/tholo/pytest-flake8;