mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
python3Packages.hyperion-py: init at 0.7.4
This commit is contained in:
parent
0425d81848
commit
6d44df9860
52
pkgs/development/python-modules/hyperion-py/default.nix
Normal file
52
pkgs/development/python-modules/hyperion-py/default.nix
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
, poetry-core
|
||||||
|
, pytest-aiohttp
|
||||||
|
, pytest-asyncio
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "hyperion-py";
|
||||||
|
version = "0.7.4";
|
||||||
|
disabled = pythonOlder "3.8";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "dermotduffy";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "00x12ppmvlxs3qbdxq06wnzakvwm2m39qhmpp27qfpl137b0qqyj";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
poetry-core
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest-asyncio
|
||||||
|
pytest-aiohttp
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace pyproject.toml \
|
||||||
|
--replace " --timeout=9 --cov=hyperion" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "hyperion" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python package for Hyperion Ambient Lighting";
|
||||||
|
homepage = "https://github.com/dermotduffy/hyperion-py";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -3245,6 +3245,8 @@ in {
|
|||||||
|
|
||||||
hyperframe = callPackage ../development/python-modules/hyperframe { };
|
hyperframe = callPackage ../development/python-modules/hyperframe { };
|
||||||
|
|
||||||
|
hyperion-py = callPackage ../development/python-modules/hyperion-py { };
|
||||||
|
|
||||||
hyperkitty = callPackage ../servers/mail/mailman/hyperkitty.nix { };
|
hyperkitty = callPackage ../servers/mail/mailman/hyperkitty.nix { };
|
||||||
|
|
||||||
hyperlink = callPackage ../development/python-modules/hyperlink { };
|
hyperlink = callPackage ../development/python-modules/hyperlink { };
|
||||||
|
Loading…
Reference in New Issue
Block a user