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 , lib 3 , buildPythonPackage 4 , fetchFromGitHub 5 - , fetchpatch 6 , cmake 7 , eigen 8 , python 9 , catch 10 , numpy 11 , pytest 12 - , scipy 13 }: 14 15 buildPythonPackage rec { 16 pname = "pybind11"; 17 - version = "2.6.2"; 18 19 src = fetchFromGitHub { 20 owner = "pybind"; 21 repo = pname; 22 rev = "v${version}"; 23 - sha256 = "1lsacpawl2gb5qlh0cawj9swsyfbwhzhwiv6553a7lsigdbadqpy"; 24 }; 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 34 nativeBuildInputs = [ cmake ]; 35
··· 2 , lib 3 , buildPythonPackage 4 , fetchFromGitHub 5 , cmake 6 , eigen 7 , python 8 , catch 9 , numpy 10 , pytest 11 }: 12 13 buildPythonPackage rec { 14 pname = "pybind11"; 15 + version = "2.7.0"; 16 17 src = fetchFromGitHub { 18 owner = "pybind"; 19 repo = pname; 20 rev = "v${version}"; 21 + sha256 = "sha256-iEXoNTsfsDq79bKV7A4aOCHr11rT/cqnyLghEtGsaks="; 22 }; 23 24 nativeBuildInputs = [ cmake ]; 25