Commit 6169a5e1 authored by Benjamin Sparks's avatar Benjamin Sparks
Browse files

python3Packages.geeknote: drop

Depends on the Python2 library evernote, and is disabled for any Python
version that is not Python27.
parent 59e6a84a
Loading
Loading
Loading
Loading
+0 −48
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  isPy27,
  thrift,
  beautifulsoup4,
  markdown2,
  sqlalchemy,
  html2text,
  evernote,
}:

buildPythonPackage {
  version = "2015-05-11";
  format = "setuptools";
  pname = "geeknote";
  disabled = !isPy27;

  src = fetchFromGitHub {
    owner = "VitaliyRodnenko";
    repo = "geeknote";
    rev = "8489a87d044e164edb321ba9acca8d4631de3dca";
    sha256 = "0l16v4xnyqnsf84b1pma0jmdyxvmfwcv3sm8slrv3zv7zpmcm3lf";
  };

  /*
    build with tests fails with "Can not create application dirictory :
    /homeless-shelter/.geeknotebuilder".
  */
  doCheck = false;

  propagatedBuildInputs = [
    thrift
    beautifulsoup4
    markdown2
    sqlalchemy
    html2text
    evernote
  ];

  meta = with lib; {
    description = "Work with Evernote from command line";
    homepage = "http://www.geeknote.me";
    license = licenses.gpl1Only;
    maintainers = with maintainers; [ hbunke ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -262,6 +262,7 @@ mapAliases ({
  gbulb = throw "gbulb has been removed as it is unmaintained and no longer compatible with PyGObject 3.50."; # added 2024-10-14
  gcs-oauth2-boto-plugin = throw "gcs-oauth2-boto-plugin was removed as it depends on the removed boto package"; # Added 2024-09-22
  gdtoolkit = throw "gdtoolkit has been promoted to a top-level attribute name: `pkgs.gdtoolkit`"; # added 2023-02-15
  geeknote = throw "geeknote depends on the Python2-only library evernote"; # Added 2025-03-22
  GeoIP = geoip; # added 2023-02-19
  gigalixir = throw "gigalixir has been promoted to a top-level attribute name: `pkgs.gigalixir`"; # Added 2022-10-02
  gitdb2 = throw "gitdb2 has been deprecated, use gitdb instead."; # added 2020-03-14
+0 −2
Original line number Diff line number Diff line
@@ -5236,8 +5236,6 @@ self: super: with self; {
    python3 = python;
  });
  geeknote = callPackage ../development/python-modules/geeknote { };
  gehomesdk = callPackage ../development/python-modules/gehomesdk { };
  gekitchen = callPackage ../development/python-modules/gekitchen { };