python311Packages.neoteroi-mkdocs: init at 1.0.4
This commit is contained in:
parent
7782d26fb9
commit
64cb577ff1
63
pkgs/development/python-modules/neoteroi-mkdocs/default.nix
Normal file
63
pkgs/development/python-modules/neoteroi-mkdocs/default.nix
Normal file
@ -0,0 +1,63 @@
|
||||
{
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
click,
|
||||
essentials-openapi,
|
||||
flask,
|
||||
hatchling,
|
||||
httpx,
|
||||
jinja2,
|
||||
mkdocs,
|
||||
pytestCheckHook,
|
||||
pythonImportsCheckHook,
|
||||
rich,
|
||||
setuptools,
|
||||
}:
|
||||
buildPythonPackage rec {
|
||||
pname = "neoteroi-mkdocs";
|
||||
version = "1.0.4";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Neoteroi";
|
||||
repo = "mkdocs-plugins";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-UyTlgKWdBWckI9sBL4GRQtgNHYpHpZlWVOdmdQ+7lss=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
hatchling
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
flask
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
essentials-openapi
|
||||
click
|
||||
jinja2
|
||||
httpx
|
||||
mkdocs
|
||||
rich
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
"test_contribs" # checks against its own git repository
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"neoteroi.mkdocs"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/Neoteroi/mkdocs-plugins";
|
||||
description = "Plugins for MkDocs";
|
||||
changelog = "https://github.com/Neoteroi/mkdocs-plugins/releases/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [aldoborrero zimbatm];
|
||||
};
|
||||
}
|
@ -8303,6 +8303,8 @@ self: super: with self; {
|
||||
|
||||
neo4j = callPackage ../development/python-modules/neo4j { };
|
||||
|
||||
neoteroi-mkdocs = callPackage ../development/python-modules/neoteroi-mkdocs { };
|
||||
|
||||
nessclient = callPackage ../development/python-modules/nessclient { };
|
||||
|
||||
nest = toPythonModule(pkgs.nest-mpi.override { withPython = true; python3 = python; });
|
||||
|
Loading…
Reference in New Issue
Block a user