nixpkgs/pkgs/development/python-modules/pep8-naming/default.nix
figsoda 43ac0d3001
Merge pull request #140487 from SuperSandro2000/SuperSandro2000-patch-1
python3Packages.pep8-naming: remove unused input
2021-10-04 10:44:21 -04:00

40 lines
726 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, flake8
, flake8-polyfill
, python
}:
buildPythonPackage rec {
pname = "pep8-naming";
version = "0.12.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-uyRVlHdX0WKqTK1V26TOApAFzRaS8omaIdUdhjDKeEE=";
};
propagatedBuildInputs = [
flake8
flake8-polyfill
];
checkPhase = ''
runHook preCheck
${python.interpreter} run_tests.py
runHook postCheck
'';
pythonImportsCheck = [
"pep8ext_naming"
];
meta = with lib; {
homepage = "https://github.com/PyCQA/pep8-naming";
description = "Check PEP-8 naming conventions, plugin for flake8";
license = licenses.mit;
maintainers = with maintainers; [ eadwu ];
};
}