nixpkgs/pkgs/tools/security/vulnix/default.nix

55 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, pythonPackages, nix, ronn }:
2017-03-13 21:43:25 +00:00
2017-08-09 05:19:39 +00:00
pythonPackages.buildPythonApplication rec {
2017-03-13 21:43:25 +00:00
pname = "vulnix";
2019-06-17 08:57:35 +00:00
version = "1.8.2";
2017-03-13 21:43:25 +00:00
2017-03-15 09:29:27 +00:00
src = pythonPackages.fetchPypi {
inherit pname version;
2019-06-17 08:57:35 +00:00
sha256 = "0zn21j15vd1z7s40s45zr5wri3r770yvazxqmm60fqpzc5sg552y";
2017-03-13 21:43:25 +00:00
};
2019-03-09 17:37:42 +00:00
outputs = [ "out" "doc" "man" ];
2019-02-14 19:38:01 +00:00
nativeBuildInputs = [ ronn ];
2018-05-02 13:09:39 +00:00
checkInputs = with pythonPackages; [
freezegun
pytest
pytestcov
pytest-flake8
];
2017-03-15 09:29:27 +00:00
2017-03-13 21:43:25 +00:00
propagatedBuildInputs = [
2017-03-15 09:29:27 +00:00
nix
] ++ (with pythonPackages; [
2017-03-13 21:43:25 +00:00
click
colorama
2017-03-15 09:29:27 +00:00
lxml
pyyaml
requests
setuptools
toml
2017-08-09 05:19:39 +00:00
zodb
2017-03-15 09:29:27 +00:00
]);
2017-03-13 21:43:25 +00:00
postBuild = "make -C doc";
checkPhase = "py.test src/vulnix";
postInstall = ''
install -D -t $doc/share/doc/vulnix README.rst CHANGES.rst
gzip $doc/share/doc/vulnix/*.rst
2019-03-09 17:37:42 +00:00
install -D -t $man/share/man/man1 doc/vulnix.1
install -D -t $man/share/man/man5 doc/vulnix-whitelist.5
'';
dontStrip = true;
2017-03-13 21:43:25 +00:00
meta = with stdenv.lib; {
description = "NixOS vulnerability scanner";
homepage = https://github.com/flyingcircusio/vulnix;
license = licenses.bsd3;
maintainers = with maintainers; [ ckauhaus plumps ];
2017-03-13 21:43:25 +00:00
};
2017-03-15 09:29:27 +00:00
}