fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
46 lines
689 B
Nix
46 lines
689 B
Nix
{
|
|
buildPythonPackage,
|
|
certbot,
|
|
cryptography,
|
|
pyasn1,
|
|
pyopenssl,
|
|
pyrfc3339,
|
|
josepy,
|
|
pytz,
|
|
requests,
|
|
requests-toolbelt,
|
|
six,
|
|
werkzeug,
|
|
ndg-httpsclient,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
inherit (certbot) src version;
|
|
|
|
pname = "acme";
|
|
format = "setuptools";
|
|
|
|
propagatedBuildInputs = [
|
|
cryptography
|
|
pyasn1
|
|
pyopenssl
|
|
pyrfc3339
|
|
pytz
|
|
requests
|
|
requests-toolbelt
|
|
six
|
|
werkzeug
|
|
ndg-httpsclient
|
|
josepy
|
|
];
|
|
|
|
# does not contain any tests
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "acme" ];
|
|
|
|
sourceRoot = "${src.name}/${pname}";
|
|
|
|
meta = certbot.meta // {
|
|
description = "ACME protocol implementation in Python";
|
|
};
|
|
}
|