diff options
Diffstat (limited to 'pkgs/development/python-modules/mkdocs-macros/default.nix')
-rw-r--r-- | pkgs/development/python-modules/mkdocs-macros/default.nix | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/mkdocs-macros/default.nix b/pkgs/development/python-modules/mkdocs-macros/default.nix index 50f88efcdf29..bc73fe8848e1 100644 --- a/pkgs/development/python-modules/mkdocs-macros/default.nix +++ b/pkgs/development/python-modules/mkdocs-macros/default.nix @@ -1,16 +1,13 @@ -{ lib -, callPackage -, buildPythonPackage -, fetchPypi -, mkdocs -, mkdocs-macros -, mkdocs-material -, jinja2 -, python-dateutil -, termcolor -, pyyaml -, runCommand -, setuptools +{ + lib, + callPackage, + buildPythonPackage, + fetchPypi, + mkdocs, + jinja2, + python-dateutil, + termcolor, + pyyaml, }: buildPythonPackage rec { @@ -19,7 +16,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - sha256 = "sha256-/jSNdfAckR82K22ZjFez2FtQWHbd5p25JPLFEsOVwyg="; + hash = "sha256-/jSNdfAckR82K22ZjFez2FtQWHbd5p25JPLFEsOVwyg="; }; propagatedBuildInputs = [ @@ -36,7 +33,7 @@ buildPythonPackage rec { meta = with lib; { homepage = "https://github.com/fralau/mkdocs_macros_plugin"; - description = "Create richer and more beautiful pages in MkDocs, by using variables and calls to macros in the markdown code."; + description = "Create richer and more beautiful pages in MkDocs, by using variables and calls to macros in the markdown code"; license = licenses.mit; maintainers = with maintainers; [ tljuniper ]; }; |