mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00

Diff: https://github.com/vogelsproducts/python-MotionMount/compare/refs/tags/2.3.0...2.3.1
36 lines
777 B
Nix
36 lines
777 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-motionmount";
|
|
version = "2.3.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
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 = 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 ];
|
|
};
|
|
}
|