{ lib , aiohttp , buildPythonPackage , fetchPypi , pythonOlder }: buildPythonPackage rec { pname = "pynina"; version = "0.2.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { pname = "PyNINA"; inherit version; hash = "sha256-2Ujq2+6xQXPjKzK3HQbJnjz8cX3ALUV+22gdQflFxFY="; }; propagatedBuildInputs = [ aiohttp ]; # Project has no tests doCheck = false; pythonImportsCheck = [ "pynina" ]; meta = with lib; { description = "Python API wrapper to retrieve warnings from the german NINA app"; homepage = "https://gitlab.com/DeerMaximum/pynina"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }