summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pymongo-inmemory/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pymongo-inmemory/default.nix')
-rw-r--r--pkgs/development/python-modules/pymongo-inmemory/default.nix33
1 files changed, 13 insertions, 20 deletions
diff --git a/pkgs/development/python-modules/pymongo-inmemory/default.nix b/pkgs/development/python-modules/pymongo-inmemory/default.nix
index 6447b0a7ffe9..da76c5d01df3 100644
--- a/pkgs/development/python-modules/pymongo-inmemory/default.nix
+++ b/pkgs/development/python-modules/pymongo-inmemory/default.nix
@@ -1,11 +1,12 @@
-{ lib
-, buildPythonPackage
-, pythonOlder
-, fetchFromGitHub
-, fetchpatch
-, poetry-core
-, pymongo
-, pytestCheckHook
+{
+ lib,
+ buildPythonPackage,
+ pythonOlder,
+ fetchFromGitHub,
+ fetchpatch,
+ poetry-core,
+ pymongo,
+ pytestCheckHook,
}:
buildPythonPackage rec {
@@ -36,17 +37,11 @@ buildPythonPackage rec {
'os.makedirs(current_path)'
'';
- nativeBuildInputs = [
- poetry-core
- ];
+ nativeBuildInputs = [ poetry-core ];
- dependencies = [
- pymongo
- ];
+ dependencies = [ pymongo ];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
disabledTestPaths = [
# new test with insufficient monkey patching, try to remove on next bump
@@ -57,9 +52,7 @@ buildPythonPackage rec {
export HOME="$(mktemp -d)"
'';
- pythonImportsCheck = [
- "pymongo_inmemory"
- ];
+ pythonImportsCheck = [ "pymongo_inmemory" ];
meta = {
homepage = "https://github.com/kaizendorks/pymongo_inmemory";