Ethan Carter Edwards 809f7dd59e
python3Packages.ds-reporting-lib: init at 6.0.0b3
Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
2025-08-01 20:04:46 -04:00

35 lines
752 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "ds-reporting-lib";
version = "6.0.0b3";
pyproject = true;
# pypi because library is embedded into another project's repo
src = fetchPypi {
inherit version;
pname = "ds_reporting_lib";
hash = "sha256-0C/UgAM7VIWEjuRq1ZCTL5CjJ6OK+0/Yw+AN4j7jj6E=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "reporting_lib" ];
# no tests
doCheck = false;
meta = {
description = "Reporting library for owasp depscan";
homepage = "https://pypi.org/project/ds-reporting-lib/";
maintainers = with lib.maintainers; [ ethancedwards8 ];
teams = [ lib.teams.ngi ];
license = with lib.licenses; [ mit ];
};
}