2017-06-01 23:36:59 +01:00
|
|
|
{ stdenv, python3Packages }:
|
|
|
|
|
|
|
|
with python3Packages;
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "pirate-get";
|
2018-06-21 06:37:19 +01:00
|
|
|
version = "0.3.1";
|
2017-06-01 23:36:59 +01:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-21 06:37:19 +01:00
|
|
|
sha256 = "9d7cc4b15dd8c6a82f9e03a666372e38613ccafdc846ad4c1226ba936beea68d";
|
2017-06-01 23:36:59 +01:00
|
|
|
};
|
|
|
|
|
2018-06-21 16:43:56 +01:00
|
|
|
propagatedBuildInputs = [ colorama veryprettytable beautifulsoup4 pyperclip ];
|
2017-06-01 23:36:59 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|