{ lib, buildPythonPackage, fetchFromGitHub, poetry-core, requests, }: buildPythonPackage rec { pname = "pylacus"; version = "1.21.0"; pyproject = true; src = fetchFromGitHub { owner = "ail-project"; repo = "PyLacus"; tag = "v${version}"; hash = "sha256-YTHFA25c9EnXlOKmJd2sdrdYZ+5tAopvpWRfW8IpDpU="; }; build-system = [ poetry-core ]; dependencies = [ requests ]; # Tests require network access doCheck = false; pythonImportsCheck = [ "pylacus" ]; meta = { description = "Module to enqueue and query a remote Lacus instance"; homepage = "https://github.com/ail-project/PyLacus"; changelog = "https://github.com/ail-project/PyLacus/releases/tag/${src.tag}"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ fab ]; }; }