biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / dogtag-pki / default.nix
blob2731e184eed25186de46c1687ebe98249a9359d0
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   cryptography,
6   python-ldap,
7   requests,
8   six,
9 }:
11 buildPythonPackage rec {
12   pname = "dogtag-pki";
13   version = "11.2.1";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-rQSnQPNYr5SyeNbKoFAbnGb2X/8utrfWLa8gu93hy2w=";
19   };
21   buildInputs = [
22     cryptography
23     python-ldap
24   ];
25   pythonImportsCheck = [ "pki" ];
26   propagatedBuildInputs = [
27     requests
28     six
29   ];
31   meta = with lib; {
32     description = "Enterprise-class Certificate Authority";
33     homepage = "https://github.com/dogtagpki/pki";
34     license = licenses.gpl2;
35     maintainers = with maintainers; [ s1341 ];
36   };