python3Packages.explorerscript: fix build with renamed python-igraph
This commit is contained in:
parent
63acfd5685
commit
5f757db908
1 changed files with 16 additions and 1 deletions
|
@ -1,4 +1,11 @@
|
||||||
{ lib, buildPythonPackage, fetchFromGitHub, antlr4-python3-runtime, pygments, igraph }:
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
|
, antlr4-python3-runtime
|
||||||
|
, igraph
|
||||||
|
, pygments
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "explorerscript";
|
pname = "explorerscript";
|
||||||
|
@ -11,6 +18,14 @@ buildPythonPackage rec {
|
||||||
sha256 = "1vzyliiyrxx8l9sfbqcyr4xn5swd7znkxy69kn0vb5rban8hm9c1";
|
sha256 = "1vzyliiyrxx8l9sfbqcyr4xn5swd7znkxy69kn0vb5rban8hm9c1";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# https://github.com/SkyTemple/ExplorerScript/pull/17
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/SkyTemple/ExplorerScript/commit/47d8b3d246881d675a82b4049b87ed7d9a0e1b15.patch";
|
||||||
|
sha256 = "0sadw9l2nypl2s8lw526lvbdj4rzqdvrjncx4zxxgyp3x47csb48";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [ antlr4-python3-runtime igraph ];
|
propagatedBuildInputs = [ antlr4-python3-runtime igraph ];
|
||||||
checkInputs = [ pygments ];
|
checkInputs = [ pygments ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue