evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / pyleri / default.nix
blob2fdb2a0077c3c8515b784a85b9d5341599ad1af1
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6   unittestCheckHook,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "pyleri";
12   version = "1.4.3";
13   pyproject = true;
15   disabled = pythonOlder "3.7";
17   src = fetchFromGitHub {
18     owner = "cesbit";
19     repo = "pyleri";
20     rev = "refs/tags/${version}";
21     hash = "sha256-4t+6wtYzJbmL0TB/OXr89uZ2s8DeGlUdWwHd4YPsCW0=";
22   };
24   build-system = [ setuptools ];
26   nativeCheckInputs = [ unittestCheckHook ];
28   pythonImportsCheck = [ "pyleri" ];
30   meta = with lib; {
31     description = "Module to parse SiriDB";
32     homepage = "https://github.com/cesbit/pyleri";
33     changelog = "https://github.com/cesbit/pyleri/releases/tag/${version}";
34     license = licenses.mit;
35     maintainers = with maintainers; [ fab ];
36   };