58 lines
1,021 B
Nix
58 lines
1,021 B
Nix
![]() |
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
, poetry
|
||
|
, pytestCheckHook
|
||
|
, pythonOlder
|
||
|
, colorful
|
||
|
, tomlkit
|
||
|
, git
|
||
|
, requests
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pontos";
|
||
|
version = "21.7.4";
|
||
|
format = "pyproject";
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "greenbone";
|
||
|
repo = pname;
|
||
|
rev = "v${version}";
|
||
|
sha256 = "12z74fp21kv6jf4cwc4hd5xvl5lilhmpprcqimdg85pcddc4zwc2";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
poetry
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
colorful
|
||
|
tomlkit
|
||
|
requests
|
||
|
];
|
||
|
|
||
|
checkInputs = [
|
||
|
git
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
disabledTests = [
|
||
|
# Signing fails
|
||
|
"test_find_no_signing_key"
|
||
|
"test_find_signing_key"
|
||
|
"test_find_unreleased_information"
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "pontos" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Collection of Python utilities, tools, classes and functions";
|
||
|
homepage = "https://github.com/greenbone/pontos";
|
||
|
license = with licenses; [ gpl3Plus ];
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|