summary refs log tree commit diff
path: root/pkgs/development/python-modules/etesync/default.nix
blob: 4edf0f71cf2019fd8668b40b5ac6d3f49cae363c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{ 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 {
  pname = "etesync";
  version = "0.10.0";
  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "09sdqviv9jyd013gxjjcw6vd4si860304haylvw4dp9kljsd94qa";
  };

  propagatedBuildInputs = [
    appdirs
    asn1crypto
    cffi
    cryptography
    furl
    idna
    orderedmultidict
    packaging
    peewee
    py
    pyasn1
    pycparser
    pyparsing
    pyscrypt
    python-dateutil
    pytz
    requests
    six
    vobject
  ];

  checkInputs = [
    pytest
  ];

  checkPhase = ''
    pytest tests/test_collections.py
    pytest tests/test_crypto.py
  '';

  meta = with lib; {
    homepage = "https://www.etesync.com/";
    description = "A python API to interact with an EteSync server.";
    license = licenses.lgpl3;
    maintainers = with maintainers; [ valodim ];
  };
}