nixpkgs/pkgs/development/python-modules/flake8-debugger/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

42 lines
744 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, flake8
, pycodestyle
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "flake8-debugger";
version = "4.1.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-UrACVglB422b+Ab8olI9x/uFYKKV1fGm4VrC3tenOEA=";
};
propagatedBuildInputs = [
flake8
pycodestyle
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"flake8_debugger"
];
meta = with lib; {
description = "ipdb/pdb statement checker plugin for flake8";
homepage = "https://github.com/jbkahn/flake8-debugger";
license = licenses.mit;
maintainers = with maintainers; [ johbo ];
};
}