python312Packages.skyboxremote: init at 0.0.6 (#362245)

This commit is contained in:
Fabian Affolter
2024-12-06 13:30:59 +01:00
committed by GitHub
2 changed files with 49 additions and 0 deletions
@@ -0,0 +1,47 @@
{
lib,
buildPythonPackage,
fetchPypi,
flit-core,
pyspark,
pytest-cov-stub,
pytest-mock,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "skyboxremote";
version = "0.0.6";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-GgRUMGnU91UQm9LNctYhHfRmfFujfc8fXc9KSwLrNBM=";
};
build-system = [ flit-core ];
optional-dependencies = {
spark = [
pyspark
];
};
nativeCheckInputs = [
pytest-cov-stub
pytest-mock
pytestCheckHook
];
pythonImportsCheck = [ "skyboxremote" ];
meta = {
description = "Module for controlling a sky box";
homepage = "https://pypi.org/project/skyboxremote/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
+2
View File
@@ -14746,6 +14746,8 @@ self: super: with self; {
skybellpy = callPackage ../development/python-modules/skybellpy { };
skyboxremote = callPackage ../development/python-modules/skyboxremote { };
skyfield = callPackage ../development/python-modules/skyfield { };
skytemple-dtef = callPackage ../development/python-modules/skytemple-dtef { };