43 lines
989 B
Nix
43 lines
989 B
Nix
|
{ pkgs, fetchFromGitHub, python3Packages }:
|
||
|
|
||
|
let
|
||
|
pythonPackages = python3Packages;
|
||
|
in pythonPackages.buildPythonApplication rec {
|
||
|
version = "2.3.1";
|
||
|
pname = "nvpy";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "cpbotha";
|
||
|
repo = pname;
|
||
|
rev = "refs/tags/v${version}";
|
||
|
sha256 = "sha256-guNdLu/bCk89o5M3gQU7J0W4h7eZdLHM0FG5IAPLE7c=";
|
||
|
};
|
||
|
|
||
|
|
||
|
propagatedBuildInputs = with pythonPackages; [
|
||
|
markdown
|
||
|
docutils
|
||
|
simplenote
|
||
|
tkinter
|
||
|
];
|
||
|
|
||
|
# 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 = "Simplenote-syncing note-taking tool inspired by Notational Velocity";
|
||
|
homepage = "https://github.com/cpbotha/nvpy";
|
||
|
platforms = platforms.linux;
|
||
|
license = licenses.bsd3;
|
||
|
mainProgram = "nvpy";
|
||
|
};
|
||
|
}
|