python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / pirate-get / default.nix
blobec2c821f6e8ca053bca592581b3128121a468696
1 { lib, python3Packages }:
3 with python3Packages;
5 buildPythonApplication rec {
6   pname = "pirate-get";
7   version = "0.4.2";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "sha256-VtnVyJqrdGXTqcyzpHCOMUI9G7/BkXzihDrBrsxl7Eg=";
12   };
14   propagatedBuildInputs = [ colorama veryprettytable pyperclip ];
16   meta = with lib; {
17     description = "A command line interface for The Pirate Bay";
18     homepage = "https://github.com/vikstrous/pirate-get";
19     license = licenses.gpl3Plus;
20     maintainers = with maintainers; [ rnhmjoj ];
21     platforms = platforms.unix;
22   };