diff options
Diffstat (limited to 'pkgs/development/python-modules/etuples/default.nix')
-rw-r--r-- | pkgs/development/python-modules/etuples/default.nix | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/etuples/default.nix b/pkgs/development/python-modules/etuples/default.nix index a78cb3dc9897..d1a122162d2b 100644 --- a/pkgs/development/python-modules/etuples/default.nix +++ b/pkgs/development/python-modules/etuples/default.nix @@ -1,12 +1,13 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, cons -, multipledispatch -, py -, pytestCheckHook -, pytest-html -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + cons, + multipledispatch, + py, + pytestCheckHook, + pytest-html, + pythonOlder, }: buildPythonPackage rec { @@ -39,9 +40,7 @@ buildPythonPackage rec { "--self-contained-html" ]; - pythonImportsCheck = [ - "etuples" - ]; + pythonImportsCheck = [ "etuples" ]; meta = with lib; { description = "Python S-expression emulation using tuple-like objects"; |