python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / bukut / default.nix
blob0e38afe7955c8ce8b22433af0555c82b6bb56919
1 { lib, python3, fetchFromGitHub }:
3 with python3.pkgs; buildPythonApplication rec {
4   pname = "bukut";
5   version = "0.11";
7   src = fetchFromGitHub {
8     owner = "peterjschroeder";
9     repo = "bukut";
10     rev = "v${version}";
11     sha256 = "sha256-Hp9/tSdRNAoll/fYNJuhYC7cgy5AK3PUtYUsS6zsz1Y=";
12   };
14   propagatedBuildInputs = [
15     asciimatics
16     beautifulsoup4
17     natsort
18     pyperclip
19     pyxdg
20   ];
22   meta = with lib; {
23     description = "Text user interface for buku bookmark manager";
24     homepage = "https://github.com/peterjschroeder/bukut";
25     license = licenses.gpl3Only;
26     maintainers = with maintainers; [ taha ];
27   };