diff options
Diffstat (limited to 'pkgs/development/python-modules/texsoup/default.nix')
-rw-r--r-- | pkgs/development/python-modules/texsoup/default.nix | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/texsoup/default.nix b/pkgs/development/python-modules/texsoup/default.nix index da59b2fc28bc..86519f929c7e 100644 --- a/pkgs/development/python-modules/texsoup/default.nix +++ b/pkgs/development/python-modules/texsoup/default.nix @@ -1,8 +1,9 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, setuptools -, pytestCheckHook +{ + lib, + buildPythonPackage, + fetchFromGitHub, + setuptools, + pytestCheckHook, }: buildPythonPackage rec { @@ -17,15 +18,11 @@ buildPythonPackage rec { hash = "sha256-XKYJycYivtrszU46B3Bd4JLrvckBpQu9gKDMdr6MyZU="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; pythonImportsCheck = [ "TexSoup" ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; preCheck = '' substituteInPlace pytest.ini \ @@ -36,6 +33,6 @@ buildPythonPackage rec { description = "Fault-tolerant Python3 package for searching, navigating, and modifying LaTeX documents"; homepage = "https://github.com/alvinwan/TexSoup"; license = licenses.bsd2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |