python310Packages.certomancer: init at 0.8.2
This commit is contained in:
parent
8a9ba90b53
commit
6d882ff425
2 changed files with 73 additions and 0 deletions
71
pkgs/development/python-modules/certomancer/default.nix
Normal file
71
pkgs/development/python-modules/certomancer/default.nix
Normal file
|
@ -0,0 +1,71 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, asn1crypto
|
||||
, click
|
||||
, oscrypto
|
||||
, pyyaml
|
||||
, python-dateutil
|
||||
, tzlocal
|
||||
, pytest-aiohttp
|
||||
, pytz
|
||||
, freezegun
|
||||
, jinja2
|
||||
, pyhanko-certvalidator
|
||||
, requests
|
||||
, requests-mock
|
||||
, werkzeug
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "certomancer";
|
||||
version = "0.8.2";
|
||||
format = "setuptools";
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
# Tests are only available on GitHub
|
||||
src = fetchFromGitHub {
|
||||
owner = "MatthiasValvekens";
|
||||
repo = "certomancer";
|
||||
rev = version;
|
||||
sha256 = "sha256-H43NlFNTwZtedHsB7c62MocwQVOi5JjVJxRcZY+Wn7Y=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
asn1crypto
|
||||
click
|
||||
oscrypto
|
||||
pyyaml
|
||||
python-dateutil
|
||||
tzlocal
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.py \
|
||||
--replace ", 'pytest-runner'" "" \
|
||||
--replace "pyhanko-certvalidator==0.19.2" "pyhanko-certvalidator==0.19.5"
|
||||
'';
|
||||
|
||||
checkInputs = [
|
||||
freezegun
|
||||
jinja2
|
||||
pyhanko-certvalidator
|
||||
pytest-aiohttp
|
||||
pytz
|
||||
requests
|
||||
requests-mock
|
||||
werkzeug
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "certomancer" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Quickly construct, mock & deploy PKI test configurations using simple declarative configuration";
|
||||
homepage = "https://github.com/MatthiasValvekens/certomancer";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ wolfangaukang ];
|
||||
};
|
||||
}
|
|
@ -1555,6 +1555,8 @@ in {
|
|||
|
||||
certipy = callPackage ../development/python-modules/certipy { };
|
||||
|
||||
certomancer = callPackage ../development/python-modules/certomancer { };
|
||||
|
||||
certvalidator = callPackage ../development/python-modules/certvalidator { };
|
||||
|
||||
cffi = callPackage ../development/python-modules/cffi { };
|
||||
|
|
Loading…
Reference in a new issue