about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/pirate-get/default.nix
blob: c1b43a00f52f36ed64eef657cc15343c2b4c6294 (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
{ lib, python3Packages, fetchPypi }:

with python3Packages;

buildPythonApplication rec {
  pname = "pirate-get";
  version = "0.4.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-VtnVyJqrdGXTqcyzpHCOMUI9G7/BkXzihDrBrsxl7Eg=";
  };

  propagatedBuildInputs = [ colorama veryprettytable pyperclip ];

  meta = with lib; {
    description = "A command line interface for The Pirate Bay";
    homepage = "https://github.com/vikstrous/pirate-get";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ rnhmjoj ];
    platforms = platforms.unix;
  };
}