blob: 0e5ad56e4bffd1e93be3987cd1ccd6df23c472ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "python-motionmount";
version = "2.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "vogelsproducts";
repo = "python-MotionMount";
tag = version;
hash = "sha256-cXh+7DNbwYoKp76XmzPno6dcfujZT/QUO3Ns72M4gV0=";
};
build-system = [ setuptools ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "motionmount" ];
meta = {
description = "Module to control the TVM7675 Pro (Signature) series of MotionMount";
homepage = "https://github.com/vogelsproducts/python-MotionMount";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|