dogtag-pki: init at 11.2.1
This commit is contained in:
parent
d9587d35f4
commit
8a68c2bdcc
23
pkgs/development/python-modules/dogtag-pki/default.nix
Normal file
23
pkgs/development/python-modules/dogtag-pki/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user