diff options
Diffstat (limited to 'Omni/Bild/Deps/interegular.nix')
-rw-r--r-- | Omni/Bild/Deps/interegular.nix | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Omni/Bild/Deps/interegular.nix b/Omni/Bild/Deps/interegular.nix index 24065d8..b46f4c8 100644 --- a/Omni/Bild/Deps/interegular.nix +++ b/Omni/Bild/Deps/interegular.nix @@ -1,5 +1,8 @@ -{ lib, sources, buildPythonPackage }: - +{ + lib, + sources, + buildPythonPackage, +}: buildPythonPackage rec { pname = "interegular"; version = sources.interegular.rev; @@ -7,15 +10,15 @@ buildPythonPackage rec { src = sources.interegular; - propagatedBuildInputs = [ ]; + propagatedBuildInputs = []; doCheck = false; # no tests currently - pythonImportsCheck = [ "interegular" ]; + pythonImportsCheck = ["interegular"]; meta = with lib; { description = "Allows to check regexes for overlaps."; homepage = "https://github.com/MegaIng/interegular"; license = licenses.mit; - maintainers = with maintainers; [ bsima ]; + maintainers = with maintainers; [bsima]; }; } |