nixpkgs/pkgs/development/python-modules/securityreporter/default.nix
2024-03-30 09:39:40 +01:00

57 lines
1.0 KiB
Nix

{ lib
, buildPythonPackage
, docker
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, pythonOlder
, requests
, responses
}:
buildPythonPackage rec {
pname = "securityreporter";
version = "1.0.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "dongit-org";
repo = "python-reporter";
rev = "refs/tags/v${version}";
hash = "sha256-mBZVsoDnDRYHdcFzi4kuwmAJDRdpysUbNRcDzIhYRGY=";
};
build-system = [
poetry-core
];
dependencies = [
requests
];
nativeCheckInputs = [
docker
pytestCheckHook
responses
];
pythonImportsCheck = [
"reporter"
];
disabledTestPaths = [
# Test require a running Docker instance
"tests/functional/"
];
meta = with lib; {
description = "A Python wrapper for the Reporter API";
homepage = "https://github.com/dongit-org/python-reporter";
changelog = "https://github.com/dongit-org/python-reporter/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}