mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
python3Packages.pyhiveapi: init at 0.4.2
This commit is contained in:
parent
a5212a7727
commit
6420b66f0b
2 changed files with 65 additions and 0 deletions
63
pkgs/development/python-modules/pyhiveapi/default.nix
Normal file
63
pkgs/development/python-modules/pyhiveapi/default.nix
Normal file
|
@ -0,0 +1,63 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, unasync
|
||||
, boto3
|
||||
, botocore
|
||||
, requests
|
||||
, aiohttp
|
||||
, pyquery
|
||||
, loguru
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyhiveapi";
|
||||
version = "0.4.2";
|
||||
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Pyhass";
|
||||
repo = "Pyhiveapi";
|
||||
rev = "v${version}";
|
||||
sha256 = "0x9cfxfdpccz360azpyfhvn09xxkw7vxy42npgbqhpy2g6mh5sif";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace requirements.txt \
|
||||
--replace "pre-commit" ""
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
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";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
|
@ -5268,6 +5268,8 @@ in {
|
|||
|
||||
pyheos = callPackage ../development/python-modules/pyheos { };
|
||||
|
||||
pyhiveapi = callPackage ../development/python-modules/pyhiveapi { };
|
||||
|
||||
pynndescent = callPackage ../development/python-modules/pynndescent { };
|
||||
|
||||
pynobo = callPackage ../development/python-modules/pynobo { };
|
||||
|
|
Loading…
Reference in a new issue