about summary refs log tree commit diff
path: root/pkgs/applications/misc/bukut/default.nix
blob: 0e38afe7955c8ce8b22433af0555c82b6bb56919 (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
{ lib, python3, fetchFromGitHub }:

with python3.pkgs; buildPythonApplication rec {
  pname = "bukut";
  version = "0.11";

  src = fetchFromGitHub {
    owner = "peterjschroeder";
    repo = "bukut";
    rev = "v${version}";
    sha256 = "sha256-Hp9/tSdRNAoll/fYNJuhYC7cgy5AK3PUtYUsS6zsz1Y=";
  };

  propagatedBuildInputs = [
    asciimatics
    beautifulsoup4
    natsort
    pyperclip
    pyxdg
  ];

  meta = with lib; {
    description = "Text user interface for buku bookmark manager";
    homepage = "https://github.com/peterjschroeder/bukut";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ taha ];
  };
}