python3Packages.blspy: unbreak
This commit is contained in:
parent
24d31a79f7
commit
6ee0c7dcf0
1 changed files with 7 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
, setuptools-scm
|
, setuptools-scm
|
||||||
, substituteAll
|
, substituteAll
|
||||||
, cmake
|
, cmake
|
||||||
|
@ -40,6 +41,12 @@ buildPythonPackage rec {
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
# avoid dynamic linking error at import time
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/Chia-Network/bls-signatures/pull/287/commits/797241e9dae1c164c862cbdb38c865d4b124a601.patch";
|
||||||
|
sha256 = "sha256-tlc4aA75gUxt5OaSNZqIlO//PXjmddVgVLYuVEFNmkE=";
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake setuptools-scm ];
|
nativeBuildInputs = [ cmake setuptools-scm ];
|
||||||
|
|
Loading…
Reference in a new issue