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

27 lines
641 B
Nix
Raw Normal View History

2017-06-02 00:36:59 +02:00
{ stdenv, python3Packages }:
with python3Packages;
buildPythonApplication rec {
name = "${pname}-${version}";
pname = "pirate-get";
2017-09-12 13:59:36 +02:00
version = "0.2.12";
2017-06-02 00:36:59 +02:00
doCheck = false;
src = fetchPypi {
inherit pname version;
2017-09-12 13:59:36 +02:00
sha256 = "1q6hvavj0gswgw3x756h18nmmpnxlgg08qvxphpbzlwd43xrnza3";
2017-06-02 00:36:59 +02:00
};
propagatedBuildInputs = [ colorama veryprettytable beautifulsoup4 ];
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;
};
}