10 buildPythonPackage rec {
11 pname = "crownstone-core";
13 format = "setuptools";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
19 repo = "crownstone-lib-python-core";
21 hash = "sha256-zrlCzx7N3aUcTUNa64jSzDdWgQneX+Hc5n8TTTcZ4ck=";
24 propagatedBuildInputs = [ pyaes ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "crownstone_core" ];
31 description = "Python module with shared classes, util functions and definition of Crownstone";
32 homepage = "https://github.com/crownstone/crownstone-lib-python-core";
33 license = with licenses; [ mit ];
34 maintainers = with maintainers; [ fab ];