summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/django-treebeard/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/django-treebeard/default.nix')
-rw-r--r--pkgs/development/python-modules/django-treebeard/default.nix23
1 files changed, 10 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/django-treebeard/default.nix b/pkgs/development/python-modules/django-treebeard/default.nix
index 6b26ece7dd50..fa687c99549f 100644
--- a/pkgs/development/python-modules/django-treebeard/default.nix
+++ b/pkgs/development/python-modules/django-treebeard/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, django
-, fetchPypi
-, pytest-django
-, pytestCheckHook
-, pythonOlder
+{
+ lib,
+ buildPythonPackage,
+ django,
+ fetchPypi,
+ pytest-django,
+ pytestCheckHook,
+ pythonOlder,
}:
buildPythonPackage rec {
@@ -19,18 +20,14 @@ buildPythonPackage rec {
hash = "sha256-hG5GKQS0NxVfduBJB7pOSEgHFoVfiLiY30Eivc+9bpg=";
};
- propagatedBuildInputs = [
- django
- ];
+ propagatedBuildInputs = [ django ];
nativeCheckInputs = [
pytest-django
pytestCheckHook
];
- pythonImportsCheck = [
- "treebeard"
- ];
+ pythonImportsCheck = [ "treebeard" ];
meta = with lib; {
description = "Efficient tree implementations for Django";