Commit ba40f0c5 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.cantools: 40.3.0 -> 40.5.0

parent 02b6f68f
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@
  fetchPypi,
  matplotlib,
  parameterized,
  pytest-freezegun,
  pytestCheckHook,
  pythonOlder,
  setuptools,
@@ -18,14 +19,14 @@

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 = [
@@ -46,6 +47,7 @@ buildPythonPackage rec {

  nativeCheckInputs = [
    parameterized
    pytest-freezegun
    pytestCheckHook
  ]
  ++ optional-dependencies.plot;
@@ -54,10 +56,10 @@ buildPythonPackage rec {

  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";
  };
}