python312Packages.skyboxremote: init at 0.0.6 (#362245)
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user