mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-25 05:23:54 +00:00
Merge pull request #100099 from veprbl/pr/ibis-framework_fix
pyhton3Packages.ibis-framework: fix tests for pandas 1.1
This commit is contained in:
commit
c42c904ddb
@ -1,4 +1,4 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, isPy27, pythonAtLeast
|
{ lib, buildPythonPackage, fetchPypi, fetchpatch, isPy27, pythonAtLeast
|
||||||
, graphviz
|
, graphviz
|
||||||
, multipledispatch
|
, multipledispatch
|
||||||
, numpy
|
, numpy
|
||||||
@ -23,6 +23,14 @@ buildPythonPackage rec {
|
|||||||
sha256 = "1my94a11jzg1hv6ln8wxklbqrg6z5l2l77vr89aq0829yyxacmv7";
|
sha256 = "1my94a11jzg1hv6ln8wxklbqrg6z5l2l77vr89aq0829yyxacmv7";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# fix tests for pandas 1.1
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/ibis-project/ibis/commit/53ef3cefc4ae90d61f3612310cb36da2bcd11305.diff";
|
||||||
|
sha256 = "1i5yjmqridjqpggiinsjaz5spcxca5bd48vy7a0mj4mm1b5flw2m";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
multipledispatch
|
multipledispatch
|
||||||
numpy
|
numpy
|
||||||
|
Loading…
Reference in New Issue
Block a user