dogtag-pki: init at 11.2.1

This commit is contained in:
s1341 2023-03-16 08:37:02 +02:00
parent d9587d35f4
commit 8a68c2bdcc
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, lib, fetchPypi, buildPythonPackage, cryptography,
ldap, requests, six }:
buildPythonPackage rec {
pname = "dogtag-pki";
version = "11.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-rQSnQPNYr5SyeNbKoFAbnGb2X/8utrfWLa8gu93hy2w=";
};
buildInputs = [ cryptography ldap ];
pythonImportsCheck = [ "pki" ];
propagatedBuildInputs = [ requests six ];
meta = with lib; {
description = "An enterprise-class Certificate Authority";
homepage = "https://github.com/dogtagpki/pki";
license = licenses.gpl2;
maintainers = with maintainers; [ s1341 ];
};
}

View file

@ -2835,6 +2835,8 @@ self: super: with self; {
dogpile-cache = callPackage ../development/python-modules/dogpile-cache { };
dogtag-pki = callPackage ../development/python-modules/dogtag-pki { };
dogtail = callPackage ../development/python-modules/dogtail { };
doit = callPackage ../development/python-modules/doit { };