python37Packages.flake8-debugger: 3.2.1 -> 4.0.0
This commit is contained in:
parent
d14c0d0b6b
commit
ce9e06d376
@ -1,26 +1,23 @@
|
|||||||
{ lib, fetchPypi, buildPythonPackage, pythonOlder
|
{ lib, fetchPypi, buildPythonPackage, pythonOlder, pythonAtLeast, isPy27
|
||||||
, flake8
|
, flake8
|
||||||
, importlib-metadata
|
|
||||||
, pycodestyle
|
, pycodestyle
|
||||||
, pytestrunner
|
, six
|
||||||
, pytest
|
, pytestCheckHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "flake8-debugger";
|
pname = "flake8-debugger";
|
||||||
version = "3.2.1";
|
version = "4.0.0";
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "712d7c1ff69ddf3f0130e94cc88c2519e720760bce45e8c330bfdcb61ab4090d";
|
sha256 = "e43dc777f7db1481db473210101ec2df2bd39a45b149d7218a618e954177eda6";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pytestrunner ];
|
propagatedBuildInputs = [ flake8 pycodestyle six ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ flake8 pycodestyle ]
|
checkInputs = [ pytestCheckHook ];
|
||||||
++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
|
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
|
||||||
|
|
||||||
# Tests not included in PyPI tarball
|
# Tests not included in PyPI tarball
|
||||||
# FIXME: Remove when https://github.com/JBKahn/flake8-debugger/pull/15 is merged
|
# FIXME: Remove when https://github.com/JBKahn/flake8-debugger/pull/15 is merged
|
||||||
|
Loading…
x
Reference in New Issue
Block a user