certbot: 0.19.0 -> 0.22.2

This commit is contained in:
makefu
2018-03-20 22:25:50 +01:00
parent 7a0027804c
commit e9f176a09a
2 changed files with 22 additions and 10 deletions

View File

@@ -1,6 +1,18 @@
{ stdenv, buildPythonPackage, fetchPypi
, certbot, nose, cryptography, pyasn1, pyopenssl, pyRFC3339
, pytz, requests, six, werkzeug, mock, ndg-httpsclient }:
, certbot
, nose
, cryptography
, pyasn1
, pyopenssl
, pyRFC3339
, josepy
, pytz
, requests
, six
, werkzeug
, mock
, ndg-httpsclient
}:
buildPythonPackage rec {
inherit (certbot) src version;
@@ -10,10 +22,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [
cryptography pyasn1 pyopenssl pyRFC3339 pytz requests six werkzeug mock
ndg-httpsclient
ndg-httpsclient josepy
];
buildInputs = [ nose ];
checkInputs = [ nose ];
postUnpack = "sourceRoot=\${sourceRoot}/acme";
}