python313Packages.cantools: 40.3.0 -> 40.5.0 (#441572)

Changed files
+5 -3
pkgs
development
python-modules
cantools
+5 -3
pkgs/development/python-modules/cantools/default.nix
···
fetchPypi,
matplotlib,
parameterized,
+
pytest-freezegun,
pytestCheckHook,
pythonOlder,
setuptools,
···
buildPythonPackage rec {
pname = "cantools";
-
version = "40.3.0";
+
version = "40.5.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
-
hash = "sha256-xucuPUaMi3ECi+vPR3MFcE74F95eTWlGS/CNIoi+gSU=";
+
hash = "sha256-ApcGMQ2J4YZjFInW2Vlgi3xsRyfqum7KSNSatb+hsnc=";
};
nativeBuildInputs = [
···
nativeCheckInputs = [
parameterized
+
pytest-freezegun
pytestCheckHook
]
++ optional-dependencies.plot;
···
meta = with lib; {
description = "Tools to work with CAN bus";
-
mainProgram = "cantools";
homepage = "https://github.com/cantools/cantools";
changelog = "https://github.com/cantools/cantools/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ gray-heron ];
+
mainProgram = "cantools";
};
}