nixpkgs/pkgs/development/python-modules/bandit/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
963 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
2019-12-28 09:05:35 +00:00
, fetchPypi
, isPy3k
, pythonOlder
, gitpython
2019-12-28 09:05:35 +00:00
, pbr
, pyyaml
, rich
2019-12-28 09:05:35 +00:00
, stevedore
}:
buildPythonPackage rec {
pname = "bandit";
version = "1.7.4";
format = "setuptools";
disabled = pythonOlder "3.7";
2019-12-28 09:05:35 +00:00
src = fetchPypi {
inherit pname version;
hash = "sha256-LWOoxXNBe64ziWLUubBvvGCA907NlVoJKEnh5lxxe9I=";
2019-12-28 09:05:35 +00:00
};
nativeBuildInputs = [
2019-12-28 09:05:35 +00:00
pbr
];
propagatedBuildInputs = [
gitpython
2019-12-28 09:05:35 +00:00
pyyaml
rich
2019-12-28 09:05:35 +00:00
stevedore
];
# Framework is Tox, tox performs 'pip install' inside the virtual-env
# and this requires Network Connectivity
doCheck = false;
pythonImportsCheck = [
"bandit"
];
meta = with lib; {
2019-12-28 09:05:35 +00:00
description = "Security oriented static analyser for python code";
homepage = "https://bandit.readthedocs.io/";
changelog = "https://github.com/PyCQA/bandit/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ kamadorueda ];
2019-12-28 09:05:35 +00:00
};
}