python.pkgs.acme: move to separate expression
This commit is contained in:
committed by
Jörg Thalheim
parent
ee1022bf26
commit
d437a722af
19
pkgs/development/python-modules/acme/default.nix
Normal file
19
pkgs/development/python-modules/acme/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi
|
||||
, certbot, nose, cryptography, pyasn1, pyopenssl, pyRFC3339
|
||||
, pytz, requests, six, werkzeug, mock, ndg-httpsclient }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
inherit (certbot) src version;
|
||||
|
||||
pname = "acme";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
cryptography pyasn1 pyopenssl pyRFC3339 pytz requests six werkzeug mock
|
||||
ndg-httpsclient
|
||||
];
|
||||
|
||||
buildInputs = [ nose ];
|
||||
|
||||
postUnpack = "sourceRoot=\${sourceRoot}/acme";
|
||||
}
|
||||
Reference in New Issue
Block a user