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

31 lines
702 B
Nix
Raw Normal View History

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