ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / acme / default.nix
blob97e725bb7119aa999a2e17fe223d9b0fe877db60
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";
21   propagatedBuildInputs = [
22     cryptography pyasn1 pyopenssl pyRFC3339 pytz requests requests-toolbelt six
23     werkzeug ndg-httpsclient josepy
24   ];
26   # does not contain any tests
27   doCheck = false;
28   pythonImportsCheck = [ "acme" ];
30   sourceRoot = "source/${pname}";
32   meta = certbot.meta // {
33     description = "ACME protocol implementation in Python";
34   };