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

27 lines
652 B
Nix
Raw Normal View History

2017-06-02 01:36:59 +03:00
{ stdenv, python3Packages }:
with python3Packages;
buildPythonApplication rec {
name = "${pname}-${version}";
pname = "pirate-get";
2018-06-12 19:47:09 +03:00
version = "0.3.0";
2017-06-02 01:36:59 +03:00
doCheck = false;
src = fetchPypi {
inherit pname version;
2018-06-12 19:47:09 +03:00
sha256 = "171dd2d387fd8af726abcf4cac0d806463bedc8e5f892655179fb4b215df47b2";
2017-06-02 01:36:59 +03: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;
};
}