13 buildPythonPackage rec {
14 pname = "securityreporter";
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
22 repo = "python-reporter";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-Ddq1qjaQemawK+u3ArlsChrkzRbcuaj5LrswyTGwTrg=";
27 build-system = [ poetry-core ];
29 dependencies = [ requests ];
37 pythonImportsCheck = [ "reporter" ];
40 # Test require a running Docker instance
45 description = "Python wrapper for the Reporter API";
46 homepage = "https://github.com/dongit-org/python-reporter";
47 changelog = "https://github.com/dongit-org/python-reporter/releases/tag/v${version}";
48 license = licenses.mit;
49 maintainers = with maintainers; [ fab ];