nixpkgs/pkgs/tools/networking/pirate-get/default.nix

26 lines
620 B
Nix
Raw Normal View History

2017-06-01 15:36:59 -07:00
{ stdenv, python3Packages }:
with python3Packages;
buildPythonApplication rec {
pname = "pirate-get";
2020-05-19 15:10:51 -07:00
version = "0.3.7";
2017-06-01 15:36:59 -07:00
doCheck = false;
src = fetchPypi {
inherit pname version;
2020-05-19 15:10:51 -07:00
sha256 = "0i87g7f25dzsi5b3swr9gny2zpmrrgygxmr1ps71rjr1n540si9n";
2017-06-01 15:36:59 -07:00
};
2018-06-21 08:43:56 -07:00
propagatedBuildInputs = [ colorama veryprettytable beautifulsoup4 pyperclip ];
2017-06-01 15:36:59 -07:00
meta = with stdenv.lib; {
description = "A command line interface for The Pirate Bay";
2020-03-30 19:53:28 -07:00
homepage = "https://github.com/vikstrous/pirate-get";
2017-06-01 15:36:59 -07:00
license = licenses.gpl1;
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.unix;
};
}