nixpkgs/pkgs/tools/networking/pirate-get/default.nix
2020-05-19 22:10:51 +00:00

26 lines
620 B
Nix

{ stdenv, python3Packages }:
with python3Packages;
buildPythonApplication rec {
pname = "pirate-get";
version = "0.3.7";
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "0i87g7f25dzsi5b3swr9gny2zpmrrgygxmr1ps71rjr1n540si9n";
};
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;
};
}