summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-flake8
diff options
context:
space:
mode:
authorJaakko Luttinen <jaakko.luttinen@iki.fi>2018-03-28 10:15:34 +0300
committerJaakko Luttinen <jaakko.luttinen@iki.fi>2018-03-31 11:40:23 +0300
commitaef19009235aee14c68460f622ceebaceeb4027b (patch)
tree13186d264298a43eba4153e6625cf7cc0d6a3d5a /pkgs/development/python-modules/pytest-flake8
parent56fb68dcef494b7cdb3e09362d67836b8137019c (diff)
downloadnixlib-aef19009235aee14c68460f622ceebaceeb4027b.tar
nixlib-aef19009235aee14c68460f622ceebaceeb4027b.tar.gz
nixlib-aef19009235aee14c68460f622ceebaceeb4027b.tar.bz2
nixlib-aef19009235aee14c68460f622ceebaceeb4027b.tar.lz
nixlib-aef19009235aee14c68460f622ceebaceeb4027b.tar.xz
nixlib-aef19009235aee14c68460f622ceebaceeb4027b.tar.zst
nixlib-aef19009235aee14c68460f622ceebaceeb4027b.zip
pythonPackages.pytest-flake8: 0.9.1 -> 1.0.0
Diffstat (limited to 'pkgs/development/python-modules/pytest-flake8')
-rw-r--r--pkgs/development/python-modules/pytest-flake8/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pytest-flake8/default.nix b/pkgs/development/python-modules/pytest-flake8/default.nix
index d79f32a67662..b170f480e96e 100644
--- a/pkgs/development/python-modules/pytest-flake8/default.nix
+++ b/pkgs/development/python-modules/pytest-flake8/default.nix
@@ -1,9 +1,8 @@
 {lib, buildPythonPackage, fetchPypi, fetchpatch, pytest, flake8}:
 
 buildPythonPackage rec {
-  name = "${pname}-${version}";
   pname = "pytest-flake8";
-  version = "0.9.1";
+  version = "1.0.0";
 
   # although pytest is a runtime dependency, do not add it as
   # propagatedBuildInputs in order to allow packages depend on another version
@@ -13,7 +12,7 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "0032l4x2i5qn7ikaaw0kjs9f4ccpas21j564spyxwmx50wnhf5p7";
+    sha256 = "01driw4sc6nfi3m3ii7d074pxi3h1h4mbiyad9crg5i1l5jxx5ir";
   };
 
   checkPhase = ''