python310Packages.wcmatch: 8.3 -> 8.4

This commit is contained in:
Sandro Jäckel 2022-06-01 23:57:08 +02:00 committed by Robert Schütz
parent e6123938ca
commit 0801cc0bfb

View file

@ -1,14 +1,25 @@
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, bracex }: { lib
, buildPythonPackage
, fetchPypi
, hatchling
, pytestCheckHook
, bracex
}:
buildPythonPackage rec { buildPythonPackage rec {
pname = "wcmatch"; pname = "wcmatch";
version = "8.3"; version = "8.4";
format = "pyproject";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "371072912398af61d1e4e78609e18801c6faecd3cb36c54c82556a60abc965db"; sha256 = "sha256-uk/FVY+JRr8f/HA0sFuBTYJdaUESSZyGA14OTTmLamc=";
}; };
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [ bracex ]; propagatedBuildInputs = [ bracex ];
checkInputs = [ pytestCheckHook ]; checkInputs = [ pytestCheckHook ];