about summary refs log tree commit diff
path: root/pkgs/development/python-modules/can/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/can/default.nix')
-rw-r--r--pkgs/development/python-modules/can/default.nix19
1 files changed, 14 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/can/default.nix b/pkgs/development/python-modules/can/default.nix
index f85f80ea2399..1072b33bc1b9 100644
--- a/pkgs/development/python-modules/can/default.nix
+++ b/pkgs/development/python-modules/can/default.nix
@@ -1,21 +1,30 @@
 { lib
 , buildPythonPackage
 , fetchPypi
+, wrapt
 , pyserial
 , nose
-, mock }:
+, mock
+, pytest
+, pytest-timeout }:
 
 buildPythonPackage rec {
   pname = "python-can";
-  version = "2.1.0";
+  version = "2.2.1";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "4a5c01dd67feeda35f88e6c12ea14ac8cabd426b9be0cc5f9fd083fe90a9dbfc";
+    sha256 = "b5e93b2ee32bdd597d9d908afe5171c402a04c9678ba47b60f33506738b1375b";
   };
 
-  propagatedBuildInputs = [ pyserial ];
-  checkInputs = [ nose mock ];
+  propagatedBuildInputs = [ wrapt pyserial ];
+  checkInputs = [ nose mock pytest pytest-timeout ];
+
+  checkPhase = ''
+    pytest -k "not test_writer_and_reader \
+           and not test_reader \
+           and not test_socketcan_on_ci_server"
+  '';
 
   meta = with lib; {
     homepage = https://github.com/hardbyte/python-can;