python3Packages.cyclonedx-python-lib: init at 0.9.1

This commit is contained in:
Fabian Affolter 2021-10-19 23:54:15 +02:00
parent f253b507e5
commit de3f35e9ad
2 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,62 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, importlib-metadata
, packageurl-python
, poetry-core
, pytestCheckHook
, pythonOlder
, requirements-parser
, setuptools
, toml
, tox
}:
buildPythonPackage rec {
pname = "cyclonedx-python-lib";
version = "0.9.1";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "CycloneDX";
repo = pname;
rev = "v${version}";
sha256 = "1jzklbypn927xslag2x56mb5cplvhqjcgj43hvww6qxcfr57ywam";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
importlib-metadata
packageurl-python
requirements-parser
setuptools
toml
];
checkInputs = [
pytestCheckHook
tox
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'setuptools = "^50.3.2"' 'setuptools = "*"' \
--replace 'importlib-metadata = "^4.8.1"' 'importlib-metadata = "*"'
'';
pythonImportsCheck = [
"cyclonedx"
];
meta = with lib; {
description = "Python library for generating CycloneDX SBOMs";
homepage = "https://github.com/CycloneDX/cyclonedx-python-lib";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -1822,6 +1822,8 @@ in {
cycler = callPackage ../development/python-modules/cycler { };
cyclonedx-python-lib = callPackage ../development/python-modules/cyclonedx-python-lib { };
cymem = callPackage ../development/python-modules/cymem { };
cypari2 = callPackage ../development/python-modules/cypari2 { };