summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pytest-mockservers/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pytest-mockservers/default.nix')
-rw-r--r--pkgs/development/python-modules/pytest-mockservers/default.nix37
1 files changed, 15 insertions, 22 deletions
diff --git a/pkgs/development/python-modules/pytest-mockservers/default.nix b/pkgs/development/python-modules/pytest-mockservers/default.nix
index d524457ebbb4..bf89bed0ab60 100644
--- a/pkgs/development/python-modules/pytest-mockservers/default.nix
+++ b/pkgs/development/python-modules/pytest-mockservers/default.nix
@@ -1,13 +1,14 @@
-{ lib
-, buildPythonPackage
-, pythonOlder
-, fetchFromGitHub
-, fetchpatch
-, poetry-core
-, aiohttp
-, pytest
-, pytest-asyncio
-, pytestCheckHook
+{
+ lib,
+ buildPythonPackage,
+ pythonOlder,
+ fetchFromGitHub,
+ fetchpatch,
+ poetry-core,
+ aiohttp,
+ pytest,
+ pytest-asyncio,
+ pytestCheckHook,
}:
buildPythonPackage rec {
@@ -32,13 +33,9 @@ buildPythonPackage rec {
})
];
- nativeBuildInputs = [
- poetry-core
- ];
+ nativeBuildInputs = [ poetry-core ];
- buildInputs = [
- pytest
- ];
+ buildInputs = [ pytest ];
propagatedBuildInputs = [
aiohttp
@@ -47,13 +44,9 @@ buildPythonPackage rec {
__darwinAllowLocalNetworking = true;
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "pytest_mockservers"
- ];
+ pythonImportsCheck = [ "pytest_mockservers" ];
meta = with lib; {
description = "A set of fixtures to test your requests to HTTP/UDP servers";