{ lib , buildPythonPackage , fetchPypi , requests , pythonOlder }: buildPythonPackage rec { pname = "doorbirdpy"; version = "2.2.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { pname = "DoorBirdPy"; inherit version; hash = "sha256-o6d8xXF5OuiF0B/wwYhDAZr05D84MuxHBY96G2XHILU="; }; propagatedBuildInputs = [ requests ]; # no tests on PyPI, no tags on GitLab doCheck = false; pythonImportsCheck = [ "doorbirdpy" ]; meta = with lib; { description = "Python wrapper for the DoorBird LAN API"; homepage = "https://gitlab.com/klikini/doorbirdpy"; license = licenses.mit; maintainers = with maintainers; [ dotlambda ]; }; }