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 {
pname = "wcmatch";
version = "8.3";
version = "8.4";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "371072912398af61d1e4e78609e18801c6faecd3cb36c54c82556a60abc965db";
sha256 = "sha256-uk/FVY+JRr8f/HA0sFuBTYJdaUESSZyGA14OTTmLamc=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [ bracex ];
checkInputs = [ pytestCheckHook ];