Merge pull request #30931 from ckauhaus/submit/vulnix-1.3.4
vulnix: 1.2.2 -> 1.3.4
This commit is contained in:
commit
91d3da04ad
@ -116,6 +116,7 @@
|
|||||||
christopherpoole = "Christopher Mark Poole <mail@christopherpoole.net>";
|
christopherpoole = "Christopher Mark Poole <mail@christopherpoole.net>";
|
||||||
ciil = "Simon Lackerbauer <simon@lackerbauer.com>";
|
ciil = "Simon Lackerbauer <simon@lackerbauer.com>";
|
||||||
ckampka = "Christian Kampka <christian@kampka.net>";
|
ckampka = "Christian Kampka <christian@kampka.net>";
|
||||||
|
ckauhaus = "Christian Kauhaus <christian@kauhaus.de>";
|
||||||
cko = "Christine Koppelt <christine.koppelt@gmail.com>";
|
cko = "Christine Koppelt <christine.koppelt@gmail.com>";
|
||||||
cleverca22 = "Michael Bishop <cleverca22@gmail.com>";
|
cleverca22 = "Michael Bishop <cleverca22@gmail.com>";
|
||||||
cmcdragonkai = "Roger Qiu <roger.qiu@matrix.ai>";
|
cmcdragonkai = "Roger Qiu <roger.qiu@matrix.ai>";
|
||||||
|
@ -3,19 +3,15 @@
|
|||||||
pythonPackages.buildPythonApplication rec {
|
pythonPackages.buildPythonApplication rec {
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
pname = "vulnix";
|
pname = "vulnix";
|
||||||
version = "1.2.2";
|
version = "1.3.4";
|
||||||
|
|
||||||
src = pythonPackages.fetchPypi {
|
src = pythonPackages.fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1ia9plziwach0bxnlcd33q30kcsf8sv0nf2jc78gsmrqnxjabr12";
|
sha256 = "1js1i86pgkkqc9yzp1rck7rmaz79klv4048r9z7v56fam0a6sg05";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with pythonPackages; [ flake8 pytest pytestcov ];
|
buildInputs = with pythonPackages; [ flake8 pytest pytestcov ];
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
sed -i -e 's/==\([^=]\+\)/>=\1/g' setup.py
|
|
||||||
'';
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
nix
|
nix
|
||||||
] ++ (with pythonPackages; [
|
] ++ (with pythonPackages; [
|
||||||
@ -27,12 +23,16 @@ pythonPackages.buildPythonApplication rec {
|
|||||||
zodb
|
zodb
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
sed -i -e 's/==\([^=]\+\)/>=\1/g' setup.py
|
||||||
|
'';
|
||||||
|
|
||||||
checkPhase = "py.test";
|
checkPhase = "py.test";
|
||||||
|
|
||||||
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.bsd2;
|
||||||
maintainers = with maintainers; [ plumps ];
|
maintainers = with maintainers; [ ckauhaus plumps ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user