nixpkgs/pkgs/development/python-modules/acme/default.nix

36 lines
608 B
Nix
Raw Normal View History

{ buildPythonPackage
2018-03-20 21:25:50 +00:00
, certbot
, cryptography
, pyasn1
, pyopenssl
, pyRFC3339
, josepy
, pytz
, requests
, requests-toolbelt
2018-03-20 21:25:50 +00:00
, six
, werkzeug
, ndg-httpsclient
}:
buildPythonPackage rec {
inherit (certbot) src version;
pname = "acme";
propagatedBuildInputs = [
cryptography pyasn1 pyopenssl pyRFC3339 pytz requests requests-toolbelt six
werkzeug ndg-httpsclient josepy
];
2020-12-04 15:15:04 +00:00
# does not contain any tests
doCheck = false;
pythonImportsCheck = [ "acme" ];
sourceRoot = "source/${pname}";
2018-08-03 12:16:54 +00:00
meta = certbot.meta // {
description = "ACME protocol implementation in Python";
};
}