mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
Merge pull request #171088 from r-ryantm/auto-update/python3.10-flake8-debugger
python310Packages.flake8-debugger: 4.0.0 -> 4.1.2
This commit is contained in:
commit
5c17fa55f0
@ -1,32 +1,41 @@
|
||||
{ lib, fetchPypi, buildPythonPackage, isPy27
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, flake8
|
||||
, pycodestyle
|
||||
, six
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "flake8-debugger";
|
||||
version = "4.0.0";
|
||||
disabled = isPy27;
|
||||
version = "4.1.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "e43dc777f7db1481db473210101ec2df2bd39a45b149d7218a618e954177eda6";
|
||||
hash = "sha256-UrACVglB422b+Ab8olI9x/uFYKKV1fGm4VrC3tenOEA=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ flake8 pycodestyle six ];
|
||||
propagatedBuildInputs = [
|
||||
flake8
|
||||
pycodestyle
|
||||
];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
# Tests not included in PyPI tarball
|
||||
# FIXME: Remove when https://github.com/JBKahn/flake8-debugger/pull/15 is merged
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [
|
||||
"flake8_debugger"
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/jbkahn/flake8-debugger";
|
||||
meta = with lib; {
|
||||
description = "ipdb/pdb statement checker plugin for flake8";
|
||||
maintainers = with lib.maintainers; [ johbo ];
|
||||
license = lib.licenses.mit;
|
||||
homepage = "https://github.com/jbkahn/flake8-debugger";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ johbo ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user