blob: 9d9b9cc9ad02eb4dd6e3420cb25955cffd543917 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
isPy27,
oauth2,
}:
buildPythonPackage rec {
pname = "evernote";
version = "1.25.3";
format = "setuptools";
disabled = !isPy27; # some dependencies do not work with py3
src = fetchPypi {
inherit pname version;
sha256 = "796847e0b7517e729041c5187fa1665c3f6fc0491cb4d71fb95a62c4f22e64eb";
};
propagatedBuildInputs = [ oauth2 ];
meta = with lib; {
description = "Evernote SDK for Python";
homepage = "https://dev.evernote.com";
license = licenses.asl20;
maintainers = with maintainers; [ hbunke ];
};
}
|