1{ lib
2, buildPythonPackage
3, fetchPypi
4, isPy27
5, oauth2
6}:
7
8buildPythonPackage rec {
9 pname = "evernote";
10 version = "1.25.3";
11 disabled = ! isPy27; #some dependencies do not work with py3
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "796847e0b7517e729041c5187fa1665c3f6fc0491cb4d71fb95a62c4f22e64eb";
16 };
17
18 propagatedBuildInputs = [ oauth2 ];
19
20 meta = with lib; {
21 description = "Evernote SDK for Python";
22 homepage = "https://dev.evernote.com";
23 license = licenses.asl20;
24 maintainers = with maintainers; [ hbunke ];
25 };
26
27}