depot/third_party/nixpkgs/pkgs/development/python-modules/pylint-flask/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

45 lines
918 B
Nix

{
lib,
astroid,
buildPythonPackage,
fetchPypi,
pylint,
pylint-plugin-utils,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "pylint-flask";
version = "0.6";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-9Nl94iFr97/OB8nAixZul4/p8nJd4qUKmEWpfefjFRc=";
};
nativeBuildInputs = [ setuptools ];
buildInputs = [ pylint ];
propagatedBuildInputs = [
astroid
pylint-plugin-utils
];
# Tests require a very old version of pylint
# also tests are only available at GitHub, with an old release tag
doCheck = false;
pythonImportsCheck = [ "pylint_flask" ];
meta = with lib; {
description = "Pylint plugin to analyze Flask applications";
homepage = "https://github.com/jschaf/pylint-flask";
license = licenses.gpl2Only;
maintainers = with maintainers; [ kamadorueda ];
};
}