nixpkgs/pkgs/tools/networking/pirate-get/default.nix
2022-03-16 05:58:48 +00:00

24 lines
574 B
Nix

{ lib, python3Packages }:
with python3Packages;
buildPythonApplication rec {
pname = "pirate-get";
version = "0.4.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-VtnVyJqrdGXTqcyzpHCOMUI9G7/BkXzihDrBrsxl7Eg=";
};
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;
};
}