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

31 lines
452 B
Nix
Raw Normal View History

{ buildPythonPackage
2018-03-21 00:25:50 +03:00
, certbot
, nose
, cryptography
, pyasn1
, pyopenssl
, pyRFC3339
, josepy
, pytz
, requests
, six
, werkzeug
, mock
, ndg-httpsclient
}:
buildPythonPackage rec {
inherit (certbot) src version;
pname = "acme";
propagatedBuildInputs = [
cryptography pyasn1 pyopenssl pyRFC3339 pytz requests six werkzeug mock
2018-03-21 00:25:50 +03:00
ndg-httpsclient josepy
];
2018-03-21 00:25:50 +03:00
checkInputs = [ nose ];
postUnpack = "sourceRoot=\${sourceRoot}/acme";
}