1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4, pyaes
5, pytestCheckHook
6, pythonOlder
7}:
8
9buildPythonPackage rec {
10 pname = "crownstone-core";
11 version = "3.1.0";
12 format = "setuptools";
13
14 disabled = pythonOlder "3.8";
15
16 src = fetchFromGitHub {
17 owner = "crownstone";
18 repo = "crownstone-lib-python-core";
19 rev = version;
20 sha256 = "sha256-ujS4ho9io7KcoK5w1SCn7UPFg1ho3dgW0HS5HfsYsuU=";
21 };
22
23 propagatedBuildInputs = [
24 pyaes
25 ];
26
27 checkInputs = [
28 pytestCheckHook
29 ];
30
31 pythonImportsCheck = [
32 "crownstone_core"
33 ];
34
35 meta = with lib; {
36 description = "Python module with shared classes, util functions and definition of Crownstone";
37 homepage = "https://github.com/crownstone/crownstone-lib-python-core";
38 license = with licenses; [ mit ];
39 maintainers = with maintainers; [ fab ];
40 };
41}