kdePackages.kirigami-addons: 1.5.0 -> 1.6.0 (#360539)
[NixPkgs.git] / pkgs / development / python-modules / wallbox / default.nix
blobe91470ecffe44939f5e0fac21105ff22e39bb5d9
2   lib,
3   aenum,
4   buildPythonPackage,
5   fetchPypi,
6   pythonOlder,
7   requests,
8   setuptools,
9   simplejson,
12 buildPythonPackage rec {
13   pname = "wallbox";
14   version = "0.7.0";
15   pyproject = true;
17   disabled = pythonOlder "3.7";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-8taZpC1N5ZsVurh10WosZvg7WDmord+PDfhHpRlfqBE=";
22   };
24   build-system = [
25     setuptools
26   ];
28   dependencies = [
29     aenum
30     requests
31     simplejson
32   ];
34   # no tests implemented
35   doCheck = false;
37   pythonImportsCheck = [ "wallbox" ];
39   meta = with lib; {
40     description = "Module for interacting with Wallbox EV charger api";
41     homepage = "https://github.com/cliviu74/wallbox";
42     changelog = "https://github.com/cliviu74/wallbox/releases/tag/${version}";
43     license = licenses.mit;
44     maintainers = with maintainers; [ dotlambda ];
45   };