{ lib, buildPythonPackage, fetchFromGitHub, setuptools, aiohttp, }: buildPythonPackage rec { pname = "pypoint"; version = "3.0.0"; pyproject = true; src = fetchFromGitHub { owner = "fredrike"; repo = "pypoint"; rev = "v${version}"; hash = "sha256-Ri+vf/vnjQQ+9eZ1Gzt+v68FAxVGt0IY9S3SpeVem3A="; }; build-system = [ setuptools ]; dependencies = [ aiohttp ]; # upstream has no tests doCheck = false; pythonImportsCheck = [ "pypoint" ]; meta = with lib; { description = "Python module for communicating with Minut Point"; homepage = "https://github.com/fredrike/pypoint"; license = licenses.mit; maintainers = with maintainers; [ dotlambda ]; }; }