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

with python3Packages;

buildPythonApplication rec {
  name = "${pname}-${version}";
  pname = "pirate-get";
  version = "0.2.12";

  doCheck = false;

  src = fetchPypi {
    inherit pname version;
    sha256 = "1q6hvavj0gswgw3x756h18nmmpnxlgg08qvxphpbzlwd43xrnza3";
  };

  propagatedBuildInputs = [ colorama veryprettytable beautifulsoup4 ];

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