1 { pkgs, fetchFromGitHub, python3Packages }:
4 pythonPackages = python3Packages;
5 in pythonPackages.buildPythonApplication rec {
9 src = fetchFromGitHub {
12 rev = "refs/tags/v${version}";
13 sha256 = "sha256-guNdLu/bCk89o5M3gQU7J0W4h7eZdLHM0FG5IAPLE7c=";
17 propagatedBuildInputs = with pythonPackages; [
28 install -dm755 "$out/share/licenses/nvpy/"
29 install -m644 LICENSE.txt "$out/share/licenses/nvpy/LICENSE"
31 install -dm755 "$out/share/doc/nvpy/"
32 install -m644 README.rst "$out/share/doc/nvpy/README"
35 meta = with pkgs.lib; {
36 description = "Simplenote-syncing note-taking tool inspired by Notational Velocity";
37 homepage = "https://github.com/cpbotha/nvpy";
38 platforms = platforms.linux;
39 license = licenses.bsd3;