python3Packages.beartype: 0.18.5 -> 0.19.0

https://github.com/beartype/beartype/releases/tag/v0.19.0
This commit is contained in:
Martin Weinelt
2024-10-13 11:02:58 +02:00
parent 79dd98bb56
commit 75f3ee8709
@@ -2,7 +2,7 @@
lib,
buildPythonPackage,
fetchPypi,
setuptools,
hatchling,
pytestCheckHook,
pythonOlder,
typing-extensions,
@@ -10,17 +10,17 @@
buildPythonPackage rec {
pname = "beartype";
version = "0.18.5";
format = "setuptools";
version = "0.19.0";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-Jk3cLx2p7JT/Y5FB++M9IuEqn3WqhjuDtwRv//E4GSc=";
hash = "sha256-3kLfwbpcNxD95sMALjvSytI27U0qq+h2NFqwtCNKZXM=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ hatchling ];
nativeCheckInputs = [
pytestCheckHook