about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dugong/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/dugong/default.nix')
-rw-r--r--pkgs/development/python-modules/dugong/default.nix22
1 files changed, 11 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/dugong/default.nix b/pkgs/development/python-modules/dugong/default.nix
index 7cfc29c9ff813..95939d5ad8e5a 100644
--- a/pkgs/development/python-modules/dugong/default.nix
+++ b/pkgs/development/python-modules/dugong/default.nix
@@ -1,16 +1,15 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pythonOlder
-, pythonAtLeast
-, pytestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  pythonOlder,
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
   pname = "dugong";
   version = "3.8.1";
   format = "setuptools";
-  disabled = pythonOlder "3.3";
 
   src = fetchFromGitHub {
     owner = "python-dugong";
@@ -19,9 +18,7 @@ buildPythonPackage rec {
     sha256 = "1063c1779idc5nrjzfv5w1xqvyy3crapb2a2xll9y6xphxclnkjc";
   };
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
   # Lots of tests hang during teardown with:
   #   ssl.SSLEOFError: EOF occurred in violation of protocol (_ssl.c:2396)
@@ -32,7 +29,10 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "HTTP 1.1 client designed for REST-ful APIs";
     homepage = "https://github.com/python-dugong/python-dugong/";
-    license = with licenses; [ psfl asl20 ];
+    license = with licenses; [
+      psfl
+      asl20
+    ];
     maintainers = with maintainers; [ ];
   };
 }