depot/third_party/nixpkgs/pkgs/tools/networking/pirate-get/default.nix
Default email 4fc29cb41f Project import generated by Copybara.
GitOrigin-RevId: 135073a87b7e2c631739f4ffa016e1859b1a425e
2020-05-29 08:06:01 +02:00

23 lines
585 B
Nix

{ stdenv, python3Packages }:
with python3Packages;
buildPythonApplication rec {
pname = "pirate-get";
version = "0.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "07s5ss9dxccx1mip7pyga1fagywkqchxmzz55ng47ac9053ffxkq";
};
propagatedBuildInputs = [ colorama veryprettytable pyperclip ];
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;
};
}