python310Packages.pybind11: 2.9.2 -> 2.10.0

https://github.com/pybind/pybind11/releases/tag/v2.10.0
This commit is contained in:
Robert Schütz 2022-08-09 17:22:19 +00:00
parent 65f39b913d
commit 3bb4b724b4

View File

@ -13,15 +13,19 @@
buildPythonPackage rec {
pname = "pybind11";
version = "2.9.2";
version = "2.10.0";
src = fetchFromGitHub {
owner = "pybind";
repo = pname;
rev = "v${version}";
hash = "sha256-O3bkexUBa+gfiJEM6KSR8y/iVqHqlCFmz/9EghxdIpw=";
hash = "sha256-/X8DZPFsNrKGbhjZ1GFOj17/NU6p4R+saCW3pLKVNeA=";
};
postPatch = ''
sed -i "/^timeout/d" pyproject.toml
'';
nativeBuildInputs = [ cmake ];
dontUseCmakeBuildDir = true;