nixpkgs/pkgs/development/python-modules/wallbox/default.nix
Fabian Affolter 5567510f9e python311Packages.wallbox: add changelog to meta
- add format
- update sorting
2023-06-05 09:20:59 +02:00

43 lines
809 B
Nix

{ lib
, aenum
, buildPythonPackage
, fetchPypi
, pythonOlder
, requests
, simplejson
}:
buildPythonPackage rec {
pname = "wallbox";
version = "0.4.14";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-HKlq5DPG3HD9i9LLTJdlzEFim+2hBdSfKl43BojhEf8=";
};
propagatedBuildInputs = [
aenum
requests
simplejson
];
# no tests implemented
doCheck = false;
pythonImportsCheck = [
"wallbox"
];
meta = with lib; {
description = "Module for interacting with Wallbox EV charger api";
homepage = "https://github.com/cliviu74/wallbox";
changelog = "https://github.com/cliviu74/wallbox/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}