tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.python-can: modernize
Martin Weinelt
2 years ago
d3adbbca
c8d67ce1
+4
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
python-can
default.nix
+4
-6
pkgs/development/python-modules/python-can/default.nix
reviewed
···
9
9
parameterized,
10
10
msgpack,
11
11
pyserial,
12
12
+
pytest-cov-stub,
12
13
pytest-timeout,
13
14
pytestCheckHook,
14
15
pythonOlder,
···
32
33
hash = "sha256-p3B1LWSygDX0UhIx4XhXv15H7Hwn9UB20jFIPDZnuNs=";
33
34
};
34
35
35
35
-
postPatch = ''
36
36
-
substituteInPlace tox.ini \
37
37
-
--replace " --cov=can --cov-config=tox.ini --cov-report=lcov --cov-report=term" ""
38
38
-
'';
39
36
pythonRelaxDeps = [ "msgpack" ];
40
37
41
41
-
nativeBuildInputs = [ setuptools ];
38
38
+
build-system = [ setuptools ];
42
39
43
43
-
propagatedBuildInputs = [
40
40
+
dependencies = [
44
41
msgpack
45
42
packaging
46
43
typing-extensions
···
57
54
future
58
55
hypothesis
59
56
parameterized
57
57
+
pytest-cov-stub
60
58
pytest-timeout
61
59
pytestCheckHook
62
60
] ++ optional-dependencies.serial;