summary refs log tree commit diff
path: root/pkgs/applications/editors/nvpy/default.nix
blob: 567f47520352799555ee8ceb544613dca076bb2e (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
{ pkgs, fetchurl, python2Packages }:

let
  pythonPackages = python2Packages;
in pythonPackages.buildPythonApplication rec {
  version = "0.9.7";
  pname = "nvpy";

  src = fetchurl {
    url = "https://github.com/cpbotha/nvpy/archive/v${version}.tar.gz";
    sha256 = "1rd3vlaqkg16iz6qcw6rkbq0jmyvc0843wa3brnvn1nz0kla243f";
  };

  propagatedBuildInputs = with pythonPackages; [
    markdown
    tkinter
    docutils
  ];

  # No tests
  doCheck = false;

  postInstall = ''
    install -dm755 "$out/share/licenses/nvpy/"
    install -m644 LICENSE.txt "$out/share/licenses/nvpy/LICENSE"

    install -dm755 "$out/share/doc/nvpy/"
    install -m644 README.rst "$out/share/doc/nvpy/README"
  '';

  meta = with pkgs.lib; {
    description = "A simplenote-syncing note-taking tool inspired by Notational Velocity";
    homepage = https://github.com/cpbotha/nvpy;
    platforms = platforms.linux;
    license = licenses.bsd3;
  };
}