Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / acme / default.nix
blob65e930e07414ae8fffb346319dd81fb5591c8172
1 { buildPythonPackage
2 , certbot
3 , cryptography
4 , pyasn1
5 , pyopenssl
6 , pyrfc3339
7 , josepy
8 , pytz
9 , requests
10 , requests-toolbelt
11 , six
12 , werkzeug
13 , ndg-httpsclient
16 buildPythonPackage rec {
17   inherit (certbot) src version;
19   pname = "acme";
20   format = "setuptools";
22   propagatedBuildInputs = [
23     cryptography pyasn1 pyopenssl pyrfc3339 pytz requests requests-toolbelt six
24     werkzeug ndg-httpsclient josepy
25   ];
27   # does not contain any tests
28   doCheck = false;
29   pythonImportsCheck = [ "acme" ];
31   sourceRoot = "${src.name}/${pname}";
33   meta = certbot.meta // {
34     description = "ACME protocol implementation in Python";
35   };