nixpkgs/pkgs/development/python-modules/addic7ed-cli/default.nix

25 lines
606 B
Nix
Raw Normal View History

2019-05-01 19:33:57 +00:00
{ lib, python3Packages, }:
python3Packages.buildPythonApplication rec {
pname = "addic7ed-cli";
version = "1.4.6";
2019-05-01 19:33:57 +00:00
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "182cpwxpdybsgl1nps850ysvvjbqlnx149kri4hxhgm58nqq0qf5";
2019-05-01 19:33:57 +00:00
};
propagatedBuildInputs = with python3Packages; [
requests
pyquery
];
meta = with lib; {
description = "A commandline access to addic7ed subtitles";
homepage = "https://github.com/BenoitZugmeyer/addic7ed-cli";
2019-05-01 19:33:57 +00:00
license = licenses.mit;
maintainers = with maintainers; [ aethelz ];
platforms = platforms.unix;
};
}