diff options
Diffstat (limited to 'pkgs/development/python-modules/etcd/default.nix')
-rw-r--r-- | pkgs/development/python-modules/etcd/default.nix | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/etcd/default.nix b/pkgs/development/python-modules/etcd/default.nix index 3cc989636f1b..d9dc4fcd0753 100644 --- a/pkgs/development/python-modules/etcd/default.nix +++ b/pkgs/development/python-modules/etcd/default.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, simplejson -, pytz -, requests +{ + lib, + buildPythonPackage, + fetchFromGitHub, + simplejson, + pytz, + requests, }: buildPythonPackage rec { @@ -23,15 +24,19 @@ buildPythonPackage rec { sed -i -e '13,14d;37d' setup.py ''; - propagatedBuildInputs = [ simplejson pytz requests ]; + propagatedBuildInputs = [ + simplejson + pytz + requests + ]; # No proper tests are available doCheck = false; meta = with lib; { - description = "A Python etcd client that just works"; + description = "Python etcd client that just works"; homepage = "https://github.com/dsoprea/PythonEtcdClient"; license = licenses.gpl2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |