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