diff options
Diffstat (limited to 'pkgs/development/python-modules/hg-evolve/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/hg-evolve/default.nix | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/hg-evolve/default.nix b/pkgs/development/python-modules/hg-evolve/default.nix index 8a1e07c574f8..3f4a0c285029 100644 --- a/pkgs/development/python-modules/hg-evolve/default.nix +++ b/pkgs/development/python-modules/hg-evolve/default.nix @@ -1,7 +1,8 @@ -{ lib -, buildPythonPackage -, fetchPypi -, mercurial +{ + lib, + buildPythonPackage, + fetchPypi, + mercurial, }: buildPythonPackage rec { @@ -14,9 +15,7 @@ buildPythonPackage rec { hash = "sha256-WUPOok/tpZJSookzCIEHRKAlTzeZ6RJY0IiclgQUOs8="; }; - nativeCheckInputs = [ - mercurial - ]; + nativeCheckInputs = [ mercurial ]; checkPhase = '' runHook preCheck @@ -54,7 +53,10 @@ buildPythonPackage rec { meta = with lib; { description = "Enables the “changeset evolution” feature of Mercurial core"; homepage = "https://www.mercurial-scm.org/doc/evolution/"; - maintainers = with maintainers; [ xavierzwirtz lukegb ]; + maintainers = with maintainers; [ + xavierzwirtz + lukegb + ]; license = licenses.gpl2Plus; }; } |
