lol

python311Packages.sphinx-pytest: 0.1.1 -> 0.2.0

https://github.com/sphinx-extensions2/sphinx-pytest/releases/tag/v0.2.0

+10 -6
+10 -6
pkgs/development/python-modules/sphinx-pytest/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "sphinx-pytest"; 12 - version = "0.1.1"; 12 + version = "0.2.0"; 13 + pyproject = true; 13 14 14 15 src = fetchFromGitHub { 15 16 owner = "chrisjsewell"; 16 17 repo = pname; 17 18 rev = "refs/tags/v${version}"; 18 - hash = "sha256-26cV6mfNos/1YLhz5aVQVb54qsiyHWdcHtvmmSzMurk="; 19 + hash = "sha256-oSBBt+hSMs4mvGqibQHoYHXr2j/bpsGOnIMfwfTfWKQ="; 19 20 }; 20 21 21 - format = "pyproject"; 22 - 23 - nativeBuildInputs = [ flit-core ]; 22 + nativeBuildInputs = [ 23 + flit-core 24 + ]; 24 25 25 26 propagatedBuildInputs = [ 26 27 sphinx ··· 30 31 pytest 31 32 ]; 32 33 33 - pythonImportsCheck = [ "sphinx_pytest" ]; 34 + pythonImportsCheck = [ 35 + "sphinx_pytest" 36 + ]; 34 37 35 38 nativeCheckInputs = [ 36 39 pytestCheckHook 37 40 ]; 38 41 39 42 meta = with lib; { 43 + changelog = "https://github.com/sphinx-extensions2/sphinx-pytest/releases/tag/v${version}"; 40 44 description = "Helpful pytest fixtures for Sphinx extensions"; 41 45 homepage = "https://github.com/chrisjsewell/sphinx-pytest"; 42 46 license = licenses.mit;