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

26 lines
620 B
Nix
Raw Normal View History

2017-06-01 22:36:59 +00:00
{ stdenv, python3Packages }:
with python3Packages;
buildPythonApplication rec {
pname = "pirate-get";
2020-03-31 02:53:28 +00:00
version = "0.3.5";
2017-06-01 22:36:59 +00:00
doCheck = false;
src = fetchPypi {
inherit pname version;
2020-03-31 02:53:28 +00:00
sha256 = "01jr9c04ic4bfalfdijavzvqzmpkw3hq1glqyc86z3v6zwl8dlp2";
2017-06-01 22:36:59 +00:00
};
2018-06-21 15:43:56 +00:00
propagatedBuildInputs = [ colorama veryprettytable beautifulsoup4 pyperclip ];
2017-06-01 22:36:59 +00:00
meta = with stdenv.lib; {
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;
};
}