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