about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dronecan/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/dronecan/default.nix')
-rw-r--r--pkgs/development/python-modules/dronecan/default.nix19
1 files changed, 7 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/dronecan/default.nix b/pkgs/development/python-modules/dronecan/default.nix
index 49c5dbb51db42..fc0c3e5e15f1b 100644
--- a/pkgs/development/python-modules/dronecan/default.nix
+++ b/pkgs/development/python-modules/dronecan/default.nix
@@ -1,28 +1,23 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pythonOlder
-, pytestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
   pname = "dronecan";
   version = "1.0.26";
   format = "setuptools";
-  disabled = pythonOlder "3.3";
 
   src = fetchPypi {
     inherit pname version;
     hash = "sha256-D2odxa9ADswrg6rgKLTyQulHpGec1r0lWRUZDV5YvyE=";
   };
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
-  pythonImportsCheck = [
-    "dronecan"
-  ];
+  pythonImportsCheck = [ "dronecan" ];
 
   meta = with lib; {
     description = "Python implementation of the DroneCAN v1 protocol stack";