diff options
Diffstat (limited to 'pkgs/development/python-modules/etesync/default.nix')
-rw-r--r-- | pkgs/development/python-modules/etesync/default.nix | 36 |
1 files changed, 27 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/etesync/default.nix b/pkgs/development/python-modules/etesync/default.nix index d65698c07ad6..a871f3fb3a91 100644 --- a/pkgs/development/python-modules/etesync/default.nix +++ b/pkgs/development/python-modules/etesync/default.nix @@ -1,8 +1,28 @@ -{ lib, buildPythonPackage, fetchPypi, isPy27, - appdirs, asn1crypto, cffi, cryptography, furl, idna, orderedmultidict, - packaging, peewee, py, pyasn1, pycparser, pyparsing, pyscrypt, - python-dateutil, pytz, requests, six, vobject, - pytest +{ + lib, + buildPythonPackage, + fetchPypi, + isPy27, + appdirs, + asn1crypto, + cffi, + cryptography, + furl, + idna, + orderedmultidict, + packaging, + peewee, + py, + pyasn1, + pycparser, + pyparsing, + pyscrypt, + python-dateutil, + pytz, + requests, + six, + vobject, + pytest, }: buildPythonPackage rec { @@ -38,9 +58,7 @@ buildPythonPackage rec { vobject ]; - nativeCheckInputs = [ - pytest - ]; + nativeCheckInputs = [ pytest ]; checkPhase = '' pytest tests/test_collections.py @@ -49,7 +67,7 @@ buildPythonPackage rec { meta = with lib; { homepage = "https://www.etesync.com/"; - description = "A python API to interact with an EteSync server."; + description = "Python API to interact with an EteSync server"; license = licenses.lgpl3; maintainers = with maintainers; [ valodim ]; }; |