python310Packages.hatch-fancy-pypi-readme: 22.7.0 -> 22.8.0

This commit is contained in:
Theodore Ni 2022-10-04 01:42:08 -07:00
parent 5f53dac66a
commit 8648265671
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474

View File

@ -5,11 +5,13 @@
, pythonOlder
, build
, hatchling
, tomli
, typing-extensions
}:
buildPythonPackage rec {
pname = "hatch-fancy-pypi-readme";
version = "22.7.0";
version = "22.8.0";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -17,7 +19,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "hatch_fancy_pypi_readme";
inherit version;
hash = "sha256-3t8roLgaKXWrsd7ukxCy64XSI4D9oNUoaedgtUNapZY=";
hash = "sha256-2pEoLKCWAcGK3tjjeNr4tXjHAhSGbwlxFW7pu5zmwmo=";
};
nativeBuildInputs = [
@ -26,6 +28,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [
hatchling
] ++ lib.optionals (pythonOlder "3.11") [
tomli
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
];
checkInputs = [