python312Packages.python-motionmount: init at 1.0.0

Module to control the TVM7675 Pro (Signature) series of MotionMount

https://github.com/vogelsproducts/python-MotionMount
This commit is contained in:
Fabian Affolter 2024-04-05 23:36:25 +02:00
parent dfe00cd6d2
commit e370841614
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "python-motionmount";
version = "1.0.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "vogelsproducts";
repo = "python-MotionMount";
rev = "refs/tags/${version}";
hash = "sha256-GXgshCARH4VPYHIIeWXwOCRmKgCyel4ydj/oKUWuyUM=";
};
build-system = [ setuptools ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "motionmount" ];
meta = with lib; {
description = "Module to control the TVM7675 Pro (Signature) series of MotionMount";
homepage = "https://github.com/vogelsproducts/python-MotionMount";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -9965,6 +9965,8 @@ self: super: with self; {
inherit (pkgs) memcached;
};
python-motionmount = callPackage ../development/python-modules/python-motionmount { };
python-otbr-api = callPackage ../development/python-modules/python-otbr-api { };
python-openems = callPackage ../development/python-modules/python-openems { };