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

24 lines
575 B
Nix
Raw Normal View History

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