python310Packages.wcmatch: 8.3 -> 8.4
This commit is contained in:
parent
e6123938ca
commit
0801cc0bfb
1 changed files with 14 additions and 3 deletions
|
@ -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 ];
|
||||
|
|
Loading…
Reference in a new issue