8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
27 lines
574 B
Nix
27 lines
574 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy27
|
|
, oauth2
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "evernote";
|
|
version = "1.25.3";
|
|
disabled = ! isPy27; #some dependencies do not work with py3
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "796847e0b7517e729041c5187fa1665c3f6fc0491cb4d71fb95a62c4f22e64eb";
|
|
};
|
|
|
|
propagatedBuildInputs = [ oauth2 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Evernote SDK for Python";
|
|
homepage = "http://dev.evernote.com";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ hbunke ];
|
|
};
|
|
|
|
}
|