anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / python-motionmount / default.nix
bloba97d7be87769f74ce2bd1c0b6d2e219accabbea5
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "python-motionmount";
11   version = "2.2.0";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "vogelsproducts";
18     repo = "python-MotionMount";
19     rev = "refs/tags/${version}";
20     hash = "sha256-07wTlyfUSt44dBwOXjkXADA+HDy8531KYxJAKqBWKeQ=";
21   };
23   build-system = [ setuptools ];
25   # Module has no tests
26   doCheck = false;
28   pythonImportsCheck = [ "motionmount" ];
30   meta = with lib; {
31     description = "Module to control the TVM7675 Pro (Signature) series of MotionMount";
32     homepage = "https://github.com/vogelsproducts/python-MotionMount";
33     license = licenses.mit;
34     maintainers = with maintainers; [ fab ];
35   };