ecf8e65d84
source, which also means they're updated from `6.0.0b3` to `6.0.0b5`.
36 lines
524 B
Nix
36 lines
524 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
dep-scan,
|
|
|
|
# build
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ds-reporting-lib";
|
|
inherit (dep-scan) version src;
|
|
pyproject = true;
|
|
|
|
sourceRoot = "${src.name}/packages/reporting-lib";
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
pythonImportsCheck = [ "reporting_lib" ];
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Reporting library for owasp depscan";
|
|
inherit (dep-scan.meta)
|
|
homepage
|
|
license
|
|
maintainers
|
|
teams
|
|
;
|
|
};
|
|
}
|