anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / crownstone-cloud / default.nix
blob089d60fceb6f2e1bb623e676ce7c052dc259d1b8
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchPypi,
6   certifi,
7   pythonOlder,
8   pytestCheckHook,
9   setuptools,
12 buildPythonPackage rec {
13   pname = "crownstone-cloud";
14   version = "1.4.11";
15   pyproject = true;
17   disabled = pythonOlder "3.8";
19   src = fetchPypi {
20     pname = "crownstone_cloud";
21     inherit version;
22     hash = "sha256-s84pK52uMupxQfdMldV14V3nj+yVku1Vw13CRX4o08U=";
23   };
25   build-system = [ setuptools ];
27   dependencies = [
28     aiohttp
29     certifi
30   ];
32   nativeCheckInputs = [ pytestCheckHook ];
34   pythonImportsCheck = [ "crownstone_cloud" ];
36   meta = with lib; {
37     description = "Python module for communicating with Crownstone Cloud and devices";
38     homepage = "https://github.com/Crownstone-Community/crownstone-lib-python-cloud";
39     license = licenses.mit;
40     maintainers = with maintainers; [ fab ];
41   };