blob: e10f251b20dced8474fc4cca606a6e340448906a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
lib,
buildPythonPackage,
canmatrix,
fetchPypi,
pytestCheckHook,
python-can,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "canopen";
version = "2.4.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-IKhLxJizTa3XnOzkZ9O74ZWRwcAqjzkzG8xgZcTYsus=";
};
__darwinAllowLocalNetworking = true;
build-system = [ setuptools-scm ];
dependencies = [ python-can ];
optional-dependencies = {
db_export = [ canmatrix ];
};
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "canopen" ];
meta = {
description = "CANopen stack implementation";
homepage = "https://github.com/christiansandberg/canopen/";
changelog = "https://github.com/christiansandberg/canopen/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sorki ];
};
}
|