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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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";
2021-12-28 11:16:12 +00:00
version = "0.4.1";
2017-06-01 22:36:59 +00:00
src = fetchPypi {
inherit pname version;
2021-12-28 11:16:12 +00:00
sha256 = "0pr703fwinr2f4rba86zp57mpf5j2jgvp5n50rc5vy5g7yfwsddm";
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;
};
}