evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ml / mloader / package.nix
blobc4fa48203216556b24db5d8a6c0355c930f1314d
1 { lib, python3Packages, fetchPypi }:
3 python3Packages.buildPythonApplication rec {
4   pname = "mloader";
5   version = "1.1.12";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     hash = "sha256-0o4FvhuFudNSEL6fwBVqxldaNePbbidY9utDqXiLRNc=";
11   };
13   postPatch = ''
14     substituteInPlace setup.py \
15       --replace "protobuf~=3.6" "protobuf"
16   '';
18   propagatedBuildInputs = with python3Packages; [
19     click
20     protobuf
21     requests
22   ];
24   # No tests in repository
25   doCheck = false;
27   pythonImportsCheck = [ "mloader" ];
29   meta = with lib; {
30     description = "Command-line tool to download manga from mangaplus";
31     homepage = "https://github.com/hurlenko/mloader";
32     license = licenses.gpl3Only;
33     maintainers = [ ];
34     mainProgram = "mloader";
35   };