1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, isPy27 5, thrift 6, beautifulsoup4 7, markdown2 8, sqlalchemy 9, html2text 10, evernote 11}: 12 13buildPythonPackage { 14 version = "2015-05-11"; 15 pname = "geeknote"; 16 disabled = ! isPy27; 17 18 src = fetchFromGitHub { 19 owner = "VitaliyRodnenko"; 20 repo = "geeknote"; 21 rev = "8489a87d044e164edb321ba9acca8d4631de3dca"; 22 sha256 = "0l16v4xnyqnsf84b1pma0jmdyxvmfwcv3sm8slrv3zv7zpmcm3lf"; 23 }; 24 25 /* build with tests fails with "Can not create application dirictory : 26 /homeless-shelter/.geeknotebuilder". */ 27 doCheck = false; 28 29 propagatedBuildInputs = [ thrift beautifulsoup4 markdown2 sqlalchemy html2text evernote ]; 30 31 meta = with lib; { 32 description = "Work with Evernote from command line"; 33 homepage = "http://www.geeknote.me"; 34 license = licenses.gpl1Only; 35 maintainers = with maintainers; [ hbunke ]; 36 }; 37 38}