nixpkgs/pkgs/development/python-modules/addic7ed-cli/default.nix
R. RyanTM ae09304f8c python27Packages.addic7ed-cli: 1.4.5 -> 1.4.6
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/addic7ed-cli/versions
2019-09-25 21:34:38 -07:00

25 lines
604 B
Nix

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