python3Packages.steamloop: init at 1.2.1
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
orjson,
|
||||
pytest-cov-stub,
|
||||
pytestCheckHook,
|
||||
pytest-asyncio,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "steamloop";
|
||||
version = "1.2.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hvaclibs";
|
||||
repo = "steamloop";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-0uzx1lW34sBWq06dR+ajPZ5VfUSTQHGSB/hoy1fLKLo=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ orjson ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest-cov-stub
|
||||
pytestCheckHook
|
||||
pytest-asyncio
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "steamloop" ];
|
||||
|
||||
meta = {
|
||||
description = "Local control for choochoo based thermostats";
|
||||
homepage = "https://github.com/hvaclibs/steamloop";
|
||||
changelog = "https://github.com/hvaclibs/steamloop/blob/${finalAttrs.src.tag}/CHANGELOG.md";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
})
|
||||
@@ -18533,6 +18533,8 @@ self: super: with self; {
|
||||
|
||||
steam = callPackage ../development/python-modules/steam { };
|
||||
|
||||
steamloop = callPackage ../development/python-modules/steamloop { };
|
||||
|
||||
steamodd = callPackage ../development/python-modules/steamodd { };
|
||||
|
||||
steampy = callPackage ../development/python-modules/steampy { };
|
||||
|
||||
Reference in New Issue
Block a user