python37Packages.blist: fix compatibility for python 3.7
This commit is contained in:
parent
334921ad31
commit
dfae1b0fd7
|
@ -1,5 +1,6 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
|
, fetchpatch
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, isPyPy
|
, isPyPy
|
||||||
}:
|
}:
|
||||||
|
@ -14,6 +15,15 @@ buildPythonPackage rec {
|
||||||
sha256 = "1hqz9pqbwx0czvq9bjdqjqh5bwfksva1is0anfazig81n18c84is";
|
sha256 = "1hqz9pqbwx0czvq9bjdqjqh5bwfksva1is0anfazig81n18c84is";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Fix compatibility for Python 3.7 https://github.com/DanielStutzbach/blist/pull/78
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/DanielStutzbach/blist/commit/2dc1ec28ed68611fcec9ac1c68070c782d6b4b4e.patch";
|
||||||
|
sha256 = "0ma0z6ga80w3wzh3sidwd8ckfbgx4j1y7cc29q6j9ddrvxpf276y";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://stutzbachenterprises.com/blist/;
|
homepage = http://stutzbachenterprises.com/blist/;
|
||||||
description = "A list-like type with better asymptotic performance and similar performance on small lists";
|
description = "A list-like type with better asymptotic performance and similar performance on small lists";
|
||||||
|
|
Loading…
Reference in New Issue