2021-01-25 08:26:54 +00:00
|
|
|
{ lib, python3Packages }:
|
2017-06-01 23:36:59 +01:00
|
|
|
|
|
|
|
with python3Packages;
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "pirate-get";
|
2020-05-28 13:14:48 +01:00
|
|
|
version = "0.4.0";
|
2017-06-01 23:36:59 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-28 13:14:48 +01:00
|
|
|
sha256 = "07s5ss9dxccx1mip7pyga1fagywkqchxmzz55ng47ac9053ffxkq";
|
2017-06-01 23:36:59 +01:00
|
|
|
};
|
|
|
|
|
2020-05-28 13:14:48 +01:00
|
|
|
propagatedBuildInputs = [ colorama veryprettytable pyperclip ];
|
2017-06-01 23:36:59 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-06-01 23:36:59 +01:00
|
|
|
description = "A command line interface for The Pirate Bay";
|
2020-03-31 03:53:28 +01:00
|
|
|
homepage = "https://github.com/vikstrous/pirate-get";
|
2017-06-01 23:36:59 +01:00
|
|
|
license = licenses.gpl1;
|
|
|
|
maintainers = with maintainers; [ rnhmjoj ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|