summary refs log tree commit diff
path: root/pkgs/development/python-modules/geeknote/default.nix
blob: cacc832486e26c944afc707c31fa6e1fc99c59ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, isPy27
, thrift
, beautifulsoup4
, markdown2
, sqlalchemy
, html2text
, evernote
}:

buildPythonPackage {
  version = "2015-05-11";
  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 stdenv.lib; {
    description = "Work with Evernote from command line";
    homepage = "http://www.geeknote.me";
    license = licenses.gpl1;
    maintainers = with maintainers; [ hbunke ];
  };

}