mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
29 lines
590 B
Nix
29 lines
590 B
Nix
{ 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 ];
|
|
};
|
|
|
|
}
|