about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-quickcheck
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-02-16 09:02:30 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2019-02-17 14:40:55 +0100
commit6f0555b030be37723f0e7bee7b1b09467cc04669 (patch)
tree961c9816bc30fe6523bde8867dae157be138dea7 /pkgs/development/python-modules/pytest-quickcheck
parent9dc262c65964f481fe22b2651f5a2e79072c6a90 (diff)
python.pkgs: rename pytestflakes to pytest-flakes
to follow naming guideline
Diffstat (limited to 'pkgs/development/python-modules/pytest-quickcheck')
-rw-r--r--pkgs/development/python-modules/pytest-quickcheck/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pytest-quickcheck/default.nix b/pkgs/development/python-modules/pytest-quickcheck/default.nix
index 1decbeb643d67..1e8a49f90be7c 100644
--- a/pkgs/development/python-modules/pytest-quickcheck/default.nix
+++ b/pkgs/development/python-modules/pytest-quickcheck/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildPythonPackage, fetchPypi, pytest, pytestflakes, pytestpep8, tox }:
+{ stdenv, buildPythonPackage, fetchPypi, pytest, pytest-flakes, pytestpep8, tox }:
 buildPythonPackage rec {
   pname = "pytest-quickcheck";
   version = "0.8.3";
@@ -9,7 +9,7 @@ buildPythonPackage rec {
   };
 
   buildInputs = [ pytest ];
-  propagatedBuildInputs = [ pytestflakes pytestpep8 tox ];
+  propagatedBuildInputs = [ pytest-flakes pytestpep8 tox ];
 
   meta = with stdenv.lib; {
     license = licenses.asl20;