Merge pull request #43851 from ckauhaus/vulnix-1.7

vulnix: 1.6.3 -> 1.7
This commit is contained in:
Andreas Rammhold 2018-07-20 17:41:37 +02:00 committed by GitHub
commit 7981d0ee6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,16 +2,21 @@
pythonPackages.buildPythonApplication rec { pythonPackages.buildPythonApplication rec {
pname = "vulnix"; pname = "vulnix";
version = "1.6.3"; version = "1.7";
src = pythonPackages.fetchPypi { src = pythonPackages.fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0ia71l0210dgcxf63bg07csx40nmpdghr4mszz91qrri7lsa5qqi"; sha256 = "16228w0vakb515cnrk4akadh0m21abiv8rv574jarcsf7359xslj";
}; };
buildInputs = [ ronn ]; buildInputs = [ ronn ];
checkInputs = with pythonPackages; [ freezegun pytest pytestcov pytest-flake8 ]; checkInputs = with pythonPackages; [
freezegun
pytest
pytestcov
pytest-flake8
];
propagatedBuildInputs = [ propagatedBuildInputs = [
nix nix
@ -27,9 +32,7 @@ pythonPackages.buildPythonApplication rec {
outputs = [ "out" "doc" ]; outputs = [ "out" "doc" ];
postBuild = '' postBuild = "make -C doc";
make -C doc
'';
checkPhase = "py.test src/vulnix"; checkPhase = "py.test src/vulnix";
@ -45,7 +48,7 @@ pythonPackages.buildPythonApplication rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "NixOS vulnerability scanner"; description = "NixOS vulnerability scanner";
homepage = https://github.com/flyingcircusio/vulnix; homepage = https://github.com/flyingcircusio/vulnix;
license = licenses.bsd2; license = licenses.bsd3;
maintainers = with maintainers; [ ckauhaus plumps ]; maintainers = with maintainers; [ ckauhaus plumps ];
}; };
} }