Files
nixpkgs/pkgs/development/python-modules/flake8-debugger/default.nix
T

33 lines
817 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, pythonOlder, pythonAtLeast, isPy27
, flake8
, pycodestyle
, six
, pytestCheckHook
}:
2017-02-20 21:10:05 +01:00
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
pname = "flake8-debugger";
version = "4.0.0";
disabled = isPy27;
2018-03-18 16:12:48 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "e43dc777f7db1481db473210101ec2df2bd39a45b149d7218a618e954177eda6";
2017-02-20 21:10:05 +01:00
};
2018-03-18 16:12:48 +01:00
propagatedBuildInputs = [ flake8 pycodestyle six ];
2018-03-18 16:12:48 +01:00
checkInputs = [ pytestCheckHook ];
2018-03-18 16:12:48 +01:00
# Tests not included in PyPI tarball
# FIXME: Remove when https://github.com/JBKahn/flake8-debugger/pull/15 is merged
doCheck = false;
2017-02-20 21:10:05 +01:00
meta = {
homepage = "https://github.com/jbkahn/flake8-debugger";
2017-02-20 21:10:05 +01:00
description = "ipdb/pdb statement checker plugin for flake8";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.mit;
};
}