depot/third_party/nixpkgs/pkgs/development/python-modules/geeknote/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

48 lines
941 B
Nix

{
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 ];
};
}