summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pytest-console-scripts/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pytest-console-scripts/default.nix')
-rw-r--r--pkgs/development/python-modules/pytest-console-scripts/default.nix31
1 files changed, 13 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/pytest-console-scripts/default.nix b/pkgs/development/python-modules/pytest-console-scripts/default.nix
index 81b31c256cfd..0d4130227632 100644
--- a/pkgs/development/python-modules/pytest-console-scripts/default.nix
+++ b/pkgs/development/python-modules/pytest-console-scripts/default.nix
@@ -1,12 +1,13 @@
-{ lib
-, buildPythonPackage
-, mock
-, fetchPypi
-, pytestCheckHook
-, python
-, pythonOlder
-, setuptools-scm
-, setuptools
+{
+ lib,
+ buildPythonPackage,
+ mock,
+ fetchPypi,
+ pytestCheckHook,
+ python,
+ pythonOlder,
+ setuptools-scm,
+ setuptools,
}:
buildPythonPackage rec {
@@ -21,13 +22,9 @@ buildPythonPackage rec {
hash = "sha256-WoJu2EzAr6IC655EOB19di973ajgwj+feafx9Ez0qJU=";
};
- nativeBuildInputs = [
- setuptools-scm
- ];
+ nativeBuildInputs = [ setuptools-scm ];
- propagatedBuildInputs = [
- setuptools
- ];
+ propagatedBuildInputs = [ setuptools ];
nativeCheckInputs = [
mock
@@ -40,9 +37,7 @@ buildPythonPackage rec {
--replace "#!/usr/bin/env python" "#!${python.interpreter}"
'';
- pythonImportsCheck = [
- "pytest_console_scripts"
- ];
+ pythonImportsCheck = [ "pytest_console_scripts" ];
meta = with lib; {
description = "Pytest plugin for testing console scripts";