forked from mirrors/nixpkgs
Merge pull request #203601 from r-ryantm/auto-update/python310Packages.cyclonedx-python-lib
python310Packages.cyclonedx-python-lib: 3.1.0 -> 3.1.1
This commit is contained in:
commit
627851fa6f
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "cyclonedx-python-lib";
|
pname = "cyclonedx-python-lib";
|
||||||
version = "3.1.0";
|
version = "3.1.1";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
disabled = pythonOlder "3.9";
|
disabled = pythonOlder "3.9";
|
||||||
|
@ -30,7 +30,7 @@ buildPythonPackage rec {
|
||||||
owner = "CycloneDX";
|
owner = "CycloneDX";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-pbwhjxlEdne426CiUORSM8w6MXpgpjMWoH37TnXxA5s=";
|
hash = "sha256-DajXu8aZAZyr7o0fGH9do9i/z+UqMMkcMXjbETtWa1g=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -64,7 +64,9 @@ buildPythonPackage rec {
|
||||||
export PYTHONPATH=tests''${PYTHONPATH+:$PYTHONPATH}
|
export PYTHONPATH=tests''${PYTHONPATH+:$PYTHONPATH}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
pytestFlagsArray = [ "tests/" ];
|
pytestFlagsArray = [
|
||||||
|
"tests/"
|
||||||
|
];
|
||||||
|
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
# These tests require network access.
|
# These tests require network access.
|
||||||
|
@ -75,6 +77,7 @@ buildPythonPackage rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python library for generating CycloneDX SBOMs";
|
description = "Python library for generating CycloneDX SBOMs";
|
||||||
homepage = "https://github.com/CycloneDX/cyclonedx-python-lib";
|
homepage = "https://github.com/CycloneDX/cyclonedx-python-lib";
|
||||||
|
changelog = "https://github.com/CycloneDX/cyclonedx-python-lib/releases/tag/v${version}";
|
||||||
license = with licenses; [ asl20 ];
|
license = with licenses; [ asl20 ];
|
||||||
maintainers = with maintainers; [ fab ];
|
maintainers = with maintainers; [ fab ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue