7264d801a6
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pirate-get/versions
26 lines
618 B
Nix
26 lines
618 B
Nix
{ stdenv, python3Packages }:
|
|
|
|
with python3Packages;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "pirate-get";
|
|
version = "0.3.3";
|
|
|
|
doCheck = false;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1zwfgfiszkca44wlx5p2243hmf8594n7bnfva5if1f69dic6w7mi";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|