1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-18 15:39:46 +03:00
nixpkgs/pkgs/development/python-modules/geeknote/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
898 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy27
, thrift
, beautifulsoup4
, markdown2
, sqlalchemy
, html2text
, evernote
}:
2019-08-13 21:52:01 +00:00
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";
2022-09-29 10:54:21 +02:00
license = licenses.gpl1Only;
maintainers = with maintainers; [ hbunke ];
};
}