{ lib, aiohttp, buildPythonPackage, fetchFromGitHub, poetry-core, }: buildPythonPackage rec { pname = "pynordpool"; version = "0.3.2"; pyproject = true; src = fetchFromGitHub { owner = "gjohansson-ST"; repo = "pynordpool"; tag = "v${version}"; hash = "sha256-3yMVhdfjl2l56WzI+uRMUwFuYafSH3YfabYqKSK25Y4="; }; build-system = [ poetry-core ]; dependencies = [ aiohttp ]; # Module has no tests doCheck = false; pythonImportsCheck = [ "pynordpool" ]; meta = { description = "Python api for Nordpool"; homepage = "https://github.com/gjohansson-ST/pynordpool"; changelog = "https://github.com/gjohansson-ST/pynordpool/releases/tag/${src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; }