nixpkgs/pkgs/tools/networking/pirate-get/default.nix
2019-12-08 16:27:21 -08:00

26 lines
618 B
Nix

{ stdenv, python3Packages }:
with python3Packages;
buildPythonApplication rec {
pname = "pirate-get";
version = "0.3.4";
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "0f82yf3bl9jaywagv4vvwypm57z1x8a8qqn0xhz9np3949df4ysm";
};
propagatedBuildInputs = [ colorama veryprettytable beautifulsoup4 pyperclip ];
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;
};
}