1{ stdenv, buildPythonPackage, fetchPypi
2, certbot, nose, cryptography, pyasn1, pyopenssl, pyRFC3339
3, pytz, requests, six, werkzeug, mock, ndg-httpsclient }:
4
5buildPythonPackage rec {
6 inherit (certbot) src version;
7
8 pname = "acme";
9 name = "${pname}-${version}";
10
11 propagatedBuildInputs = [
12 cryptography pyasn1 pyopenssl pyRFC3339 pytz requests six werkzeug mock
13 ndg-httpsclient
14 ];
15
16 buildInputs = [ nose ];
17
18 postUnpack = "sourceRoot=\${sourceRoot}/acme";
19}