about summary refs log tree commit diff
path: root/pkgs/development/python-modules/amqp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/amqp/default.nix')
-rw-r--r--pkgs/development/python-modules/amqp/default.nix25
1 files changed, 10 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/amqp/default.nix b/pkgs/development/python-modules/amqp/default.nix
index 36fc48c35f35e..c983669f85ddf 100644
--- a/pkgs/development/python-modules/amqp/default.nix
+++ b/pkgs/development/python-modules/amqp/default.nix
@@ -1,11 +1,11 @@
-{ lib
-, buildPythonPackage
-, case
-, fetchPypi
-, pytestCheckHook
-, pytest-rerunfailures
-, pythonOlder
-, vine
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  pytestCheckHook,
+  pytest-rerunfailures,
+  pythonOlder,
+  vine,
 }:
 
 buildPythonPackage rec {
@@ -20,14 +20,11 @@ buildPythonPackage rec {
     hash = "sha256-oez/QlrQY61CpIbJAoB9FIIxFIHIrZWnJpSyl1519/0=";
   };
 
-  propagatedBuildInputs = [
-    vine
-  ];
+  propagatedBuildInputs = [ vine ];
 
   __darwinAllowLocalNetworking = true;
 
   nativeCheckInputs = [
-    case
     pytestCheckHook
     pytest-rerunfailures
   ];
@@ -37,9 +34,7 @@ buildPythonPackage rec {
     "test_rmq.py"
   ];
 
-  pythonImportsCheck = [
-    "amqp"
-  ];
+  pythonImportsCheck = [ "amqp" ];
 
   meta = with lib; {
     description = "Python client for the Advanced Message Queuing Procotol (AMQP). This is a fork of amqplib which is maintained by the Celery project";