pythonPackages.evernote: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-29 13:27:31 -04:00
parent c9d4ba2407
commit e0d6142ed8
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 28 additions and 19 deletions

View file

@ -0,0 +1,27 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy27
, oauth2
}:
buildPythonPackage rec {
pname = "evernote";
version = "1.25.0";
disabled = ! isPy27; #some dependencies do not work with py3
src = fetchPypi {
inherit pname version;
sha256 = "1lwlg6fpi3530245jzham1400a5b855bm4sbdyck229h9kg1v02d";
};
propagatedBuildInputs = [ oauth2 ];
meta = with stdenv.lib; {
description = "Evernote SDK for Python";
homepage = http://dev.evernote.com;
license = licenses.asl20;
maintainers = with maintainers; [ hbunke ];
};
}

View file

@ -4423,25 +4423,7 @@ in {
markdown2 = callPackage ../development/python-modules/markdown2 { };
evernote = buildPythonPackage rec {
name = "evernote-${version}";
version = "1.25.0";
disabled = ! isPy27; #some dependencies do not work with py3
src = pkgs.fetchurl {
url = "mirror://pypi/e/evernote/${name}.tar.gz";
sha256 = "1lwlg6fpi3530245jzham1400a5b855bm4sbdyck229h9kg1v02d";
};
propagatedBuildInputs = with self; [ oauth2 ];
meta = {
description = "Evernote SDK for Python";
homepage = http://dev.evernote.com;
license = licenses.asl20;
maintainers = with maintainers; [ hbunke ];
};
};
evernote = callPackage ../development/python-modules/evernote { };
setproctitle = buildPythonPackage rec {
name = "python-setproctitle-${version}";