depot/third_party/nixpkgs/pkgs/development/python-modules/addic7ed-cli/default.nix
Default email 439a6efcab Project import generated by Copybara.
GitOrigin-RevId: f6b5bfdb470d60a876992749d0d708ed7b6b56ca
2021-02-24 18:30:23 +00:00

30 lines
702 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
];
# Tests require network access
doCheck = false;
pythonImportsCheck = [ "addic7ed_cli" ];
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;
};
}