depot/third_party/nixpkgs/pkgs/tools/networking/pirate-get/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

23 lines
575 B
Nix

{ lib, 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 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;
};
}