Commit 9d77d960 authored by Benjamin Sparks's avatar Benjamin Sparks
Browse files

python3Packages.evernote: drop

Intended for use with Python 2X, and the GitHub repository for
building the wheel has not seen an update in 7 years.
The repository referenced in Pypi's project description references a
Python3 compatible SDK, but the link 404s.

Should the link become active, then this project can be readded.
parent 6169a5e1
Loading
Loading
Loading
Loading
+0 −28
Original line number Diff line number Diff line
{
  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 ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -208,6 +208,7 @@ mapAliases ({
  et_xmlfile = et-xmlfile; # added 2023-10-16
  etebase-server = throw "pkgs.python3.etebase-server has been removed, use pkgs.etebase-server"; # added 2024-07-16
  ev3dev2 = python-ev3dev2; # added 2023-06-19
  evernote = throw "evernote is intended for use with Python 2.X";
  eyeD3 = eyed3; # added 2024-01-03
  Fabric = fabric; # addedd 2023-02-19
  face_recognition = face-recognition; # added 2022-10-15
+0 −2
Original line number Diff line number Diff line
@@ -4417,8 +4417,6 @@ self: super: with self; {
  events = callPackage ../development/python-modules/events { };
  evernote = callPackage ../development/python-modules/evernote { };
  evohome-async = callPackage ../development/python-modules/evohome-async { };
  evolutionhttp = callPackage ../development/python-modules/evolutionhttp { };