{ lib , aiohttp , buildPythonPackage , fetchPypi , poetry-core , pythonOlder }: buildPythonPackage rec { pname = "pypoolstation"; version = "0.4.4"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchPypi { pname = "PyPoolstation"; inherit version; sha256 = "sha256-MG2V7/AqgH4OVcOEDdhwQswt96URJBQtoi1i+n4IV7Y="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ aiohttp ]; # Project has no tests doCheck = false; pythonImportsCheck = [ "pypoolstation" ]; meta = with lib; { description = "Python library to interact the the Poolstation platform"; homepage = "https://github.com/cibernox/PyPoolstation"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }