linuxPackages_latest.broadcom_sta: add patch to compile on Kernel 6.12 (#359484)
[NixPkgs.git] / pkgs / development / python-modules / ecoaliface / default.nix
blobccdb695841387ff661a39ae4ca7ea82a69f29324
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   requests,
6 }:
8 buildPythonPackage rec {
9   pname = "ecoaliface";
10   version = "0.7.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "sha256-Z1O+Lkq1sIpjkz0N4g4FCUzTw51V4fYxlUVg+2sZ/ac=";
16   };
18   propagatedBuildInputs = [ requests ];
20   # Project has no tests
21   doCheck = false;
23   pythonImportsCheck = [ "ecoaliface" ];
25   meta = with lib; {
26     description = "Python library for interacting with eCoal water boiler controllers";
27     homepage = "https://github.com/matkor/ecoaliface";
28     license = with licenses; [ gpl3Plus ];
29     maintainers = with maintainers; [ fab ];
30   };