41 lines
1001 B
Nix
41 lines
1001 B
Nix
{
|
|
lib,
|
|
aiohttp,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "geniushub-client";
|
|
version = "0.7.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "manzanotti";
|
|
repo = "geniushub-client";
|
|
tag = "v${version}";
|
|
hash = "sha256-RBXqSpumJMLZIT+nQr/BUE315krjRy/Qk9OlX9Ukn3Y=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace 'VERSION = os.environ["GITHUB_REF_NAME"]' "" \
|
|
--replace "version=VERSION," 'version="${version}",'
|
|
'';
|
|
|
|
propagatedBuildInputs = [ aiohttp ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "geniushubclient" ];
|
|
|
|
meta = {
|
|
description = "Module to interact with Genius Hub systems";
|
|
homepage = "https://github.com/manzanotti/geniushub-client";
|
|
changelog = "https://github.com/manzanotti/geniushub-client/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ dotlambda ];
|
|
};
|
|
}
|