Unverified Commit f001c243 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python3Packages.mkdocs-material: 9.6.4 -> 9.6.15 (#428049)

parents 30e6f554 3871e86f
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  hatchling,
  pytestCheckHook,
  regex,
}:

buildPythonPackage rec {
  pname = "backrefs";
  version = "5.9";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "facelessuser";
    repo = "backrefs";
    tag = version;
    hash = "sha256-W75JLoBn990PoO3Ej3nb3BjOGm0c71o8hDDBUFWr8i4=";
  };

  build-system = [
    hatchling
  ];

  pythonImportsCheck = [ "backrefs" ];

  nativeCheckInputs = [
    pytestCheckHook
    regex
  ];

  meta = {
    description = "Wrapper around re or regex that adds additional back references";
    homepage = "https://github.com/facelessuser/backrefs";
    changelog = "https://github.com/facelessuser/backrefs/releases/tag/${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ drupol ];
  };
}
+4 −5
Original line number Diff line number Diff line
{
  lib,
  babel,
  backrefs,
  buildPythonPackage,
  cairosvg,
  colorama,
@@ -20,7 +21,6 @@
  pillow,
  pygments,
  pymdown-extensions,
  pythonOlder,
  regex,
  requests,
  trove-classifiers,
@@ -28,16 +28,14 @@

buildPythonPackage rec {
  pname = "mkdocs-material";
  version = "9.6.4";
  version = "9.6.15";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "squidfunk";
    repo = "mkdocs-material";
    tag = version;
    hash = "sha256-Di+m06LuS5mXzvmz8Cvby49HguUPbXEJf9PnR8fQ5jw=";
    hash = "sha256-EksLvPl/VfGSufdqgWlQTd6kz07/pTIAOz7hMBdy8Ro=";
  };

  nativeBuildInputs = [
@@ -49,6 +47,7 @@ buildPythonPackage rec {

  propagatedBuildInputs = [
    babel
    backrefs
    colorama
    jinja2
    markdown
+2 −0
Original line number Diff line number Diff line
@@ -1635,6 +1635,8 @@ self: super: with self; {
  backports-tarfile = callPackage ../development/python-modules/backports-tarfile { };
  backrefs = callPackage ../development/python-modules/backrefs { };
  backtesting = callPackage ../development/python-modules/backtesting { };
  bacpypes = callPackage ../development/python-modules/bacpypes { };