pythonPackages.pybind11: 2.6.2 -> 2.7.0

https://github.com/pybind/pybind11/releases/tag/v2.7.0

authored by Robert Schütz and committed by Frederik Rietdijk cc716a82 e261c9ab

+2 -12
+2 -12
pkgs/development/python-modules/pybind11/default.nix
··· 2 2 , lib 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 - , fetchpatch 6 5 , cmake 7 6 , eigen 8 7 , python 9 8 , catch 10 9 , numpy 11 10 , pytest 12 - , scipy 13 11 }: 14 12 15 13 buildPythonPackage rec { 16 14 pname = "pybind11"; 17 - version = "2.6.2"; 15 + version = "2.7.0"; 18 16 19 17 src = fetchFromGitHub { 20 18 owner = "pybind"; 21 19 repo = pname; 22 20 rev = "v${version}"; 23 - sha256 = "1lsacpawl2gb5qlh0cawj9swsyfbwhzhwiv6553a7lsigdbadqpy"; 21 + sha256 = "sha256-iEXoNTsfsDq79bKV7A4aOCHr11rT/cqnyLghEtGsaks="; 24 22 }; 25 - 26 - patches = [ 27 - # fix pybind11Config.cmake 28 - (fetchpatch { 29 - url = "https://github.com/pybind/pybind11/commit/d9c4e1047a95f023633a7260af5a633307438941.patch"; 30 - sha256 = "0kran295kj31xfs6mfha5ip132zd0pnj2dl36qzgyc1rpnha5gz4"; 31 - }) 32 - ]; 33 23 34 24 nativeBuildInputs = [ cmake ]; 35 25