mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
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.
This commit is contained in:
parent
6169a5e158
commit
9d77d960fd
3 changed files with 1 additions and 30 deletions
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -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
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue