biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / ecoaliface / default.nix
blob590645509304732c32aeecf0a5313a790bff2a0e
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   requests,
6 }:
8 buildPythonPackage rec {
9   pname = "ecoaliface";
10   version = "0.5.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "f17b3452cfd31bb8c3509d59b846889c81db5fb85082c061c32703162cbe9083";
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   };