summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/plaster/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/plaster/default.nix')
-rw-r--r--pkgs/development/python-modules/plaster/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/plaster/default.nix b/pkgs/development/python-modules/plaster/default.nix
index b0ce5c418df4..3585d4a7721b 100644
--- a/pkgs/development/python-modules/plaster/default.nix
+++ b/pkgs/development/python-modules/plaster/default.nix
@@ -1,5 +1,8 @@
-{ buildPythonPackage, fetchPypi
-, pytest, pytest-cov
+{
+ buildPythonPackage,
+ fetchPypi,
+ pytest,
+ pytest-cov,
}:
buildPythonPackage rec {
@@ -16,5 +19,8 @@ buildPythonPackage rec {
py.test
'';
- nativeCheckInputs = [ pytest pytest-cov ];
+ nativeCheckInputs = [
+ pytest
+ pytest-cov
+ ];
}