depot/third_party/nixpkgs/pkgs/development/python-modules/ecoaliface/default.nix

31 lines
664 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
requests,
}:
buildPythonPackage rec {
pname = "ecoaliface";
version = "0.7.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Z1O+Lkq1sIpjkz0N4g4FCUzTw51V4fYxlUVg+2sZ/ac=";
};
propagatedBuildInputs = [ requests ];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "ecoaliface" ];
meta = with lib; {
description = "Python library for interacting with eCoal water boiler controllers";
homepage = "https://github.com/matkor/ecoaliface";
license = with licenses; [ gpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}