2021-01-25 09:26:54 +01:00
|
|
|
{
|
|
|
|
lib,
|
2018-10-29 13:38:42 -04:00
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
isPy27,
|
|
|
|
thrift,
|
|
|
|
beautifulsoup4,
|
|
|
|
markdown2,
|
|
|
|
sqlalchemy,
|
|
|
|
html2text,
|
|
|
|
evernote,
|
|
|
|
}:
|
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
buildPythonPackage {
|
2018-10-29 13:38:42 -04:00
|
|
|
version = "2015-05-11";
|
2023-12-07 16:53:02 +13:00
|
|
|
format = "setuptools";
|
2018-10-29 13:38:42 -04:00
|
|
|
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
|
|
|
|
];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-10-29 13:38:42 -04:00
|
|
|
description = "Work with Evernote from command line";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "http://www.geeknote.me";
|
2022-09-29 10:54:21 +02:00
|
|
|
license = licenses.gpl1Only;
|
2018-10-29 13:38:42 -04:00
|
|
|
maintainers = with maintainers; [ hbunke ];
|
|
|
|
};
|
|
|
|
}
|