about summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope-testing/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/zope-testing/default.nix')
-rw-r--r--pkgs/development/python-modules/zope-testing/default.nix37
1 files changed, 14 insertions, 23 deletions
diff --git a/pkgs/development/python-modules/zope-testing/default.nix b/pkgs/development/python-modules/zope-testing/default.nix
index 65672118e4ef..8b0c7e22cfd5 100644
--- a/pkgs/development/python-modules/zope-testing/default.nix
+++ b/pkgs/development/python-modules/zope-testing/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, isPyPy
-, setuptools
-, pytestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  isPyPy,
+  setuptools,
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
@@ -17,33 +18,23 @@ buildPythonPackage rec {
     hash = "sha256-6HzQ2NZmVzza8TOBare5vuyAGmSoZZXBnLX+mS7z1kk=";
   };
 
-  nativeBuildInputs = [
-    setuptools
-  ];
+  nativeBuildInputs = [ setuptools ];
 
   doCheck = !isPyPy;
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
-  pytestFlagsArray = [
-    "src/zope/testing/tests.py"
-  ];
+  pytestFlagsArray = [ "src/zope/testing/tests.py" ];
 
-  pythonImportsCheck = [
-    "zope.testing"
-  ];
+  pythonImportsCheck = [ "zope.testing" ];
 
-  pythonNamespaces = [
-    "zope"
-  ];
+  pythonNamespaces = [ "zope" ];
 
   meta = with lib; {
     description = "Zope testing helpers";
-    homepage =  "https://github.com/zopefoundation/zope.testing";
+    homepage = "https://github.com/zopefoundation/zope.testing";
     changelog = "https://github.com/zopefoundation/zope.testing/blob/${version}/CHANGES.rst";
     license = licenses.zpl21;
-    maintainers = with maintainers; [ goibhniu ];
+    maintainers = [ ];
   };
 }