64 lines
1.1 KiB
Nix
64 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
pythonOlder,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
unasync,
|
|
boto3,
|
|
botocore,
|
|
requests,
|
|
aiohttp,
|
|
pyquery,
|
|
loguru,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyhive-integration";
|
|
version = "1.0.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Pyhass";
|
|
repo = "Pyhiveapi";
|
|
tag = "v${version}";
|
|
hash = "sha256-lfBr889s6NHcos/kdzQa9HJEcQ4dfCEMjuLYiLzesfE=";
|
|
};
|
|
|
|
pythonRemoveDeps = [ "pre-commit" ];
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
unasync
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
boto3
|
|
botocore
|
|
requests
|
|
aiohttp
|
|
pyquery
|
|
loguru
|
|
];
|
|
|
|
# tests are not functional yet
|
|
doCheck = false;
|
|
|
|
postBuild = ''
|
|
# pyhiveapi accesses $HOME upon importing
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
pythonImportsCheck = [ "pyhiveapi" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library to interface with the Hive API";
|
|
homepage = "https://github.com/Pyhass/Pyhiveapi";
|
|
changelog = "https://github.com/Pyhass/Pyhiveapi/releases/tag/${src.tag}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|