diff options
Diffstat (limited to 'pkgs/development/python-modules/pybars3/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pybars3/default.nix | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/pybars3/default.nix b/pkgs/development/python-modules/pybars3/default.nix index ad7294fd6358..937de513347e 100644 --- a/pkgs/development/python-modules/pybars3/default.nix +++ b/pkgs/development/python-modules/pybars3/default.nix @@ -1,8 +1,9 @@ -{ python3 -, fetchPypi -, lib -, pymeta3 -, buildPythonPackage +{ + python, + fetchPypi, + lib, + pymeta3, + buildPythonPackage, }: buildPythonPackage rec { pname = "pybars3"; @@ -14,25 +15,24 @@ buildPythonPackage rec { hash = "sha256-ashH6QXlO5xbk2rxEskQR14nv3Z/efRSjBb5rx7A4lI="; }; - propagatedBuildInputs = [ - pymeta3 - ]; + propagatedBuildInputs = [ pymeta3 ]; checkPhase = '' runHook preCheck - ${python3.interpreter} tests.py + ${python.interpreter} tests.py runHook postCheck ''; - pythonImportsCheck = [ - "pybars" - ]; + pythonImportsCheck = [ "pybars" ]; meta = with lib; { description = "Handlebars.js template support for Python 3 and 2"; homepage = "https://github.com/wbond/pybars3"; changelog = "https://github.com/wbond/pybars3/releases/tag/${version}"; license = licenses.lgpl3Only; - maintainers = with maintainers; [ jfly matusf ]; + maintainers = with maintainers; [ + jfly + matusf + ]; }; } |