Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fa1afc07b999
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1cd0f2d32680
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 9, 2020

  1. pyhton3Packages.ibis-framework: fix tests for pandas 1.1

    (cherry picked from commit c9f7ef3)
    cc #100099
    veprbl committed Oct 9, 2020
    Copy the full SHA
    1cd0f2d View commit details
Showing with 9 additions and 1 deletion.
  1. +9 −1 pkgs/development/python-modules/ibis-framework/default.nix
10 changes: 9 additions & 1 deletion pkgs/development/python-modules/ibis-framework/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, isPy27, pythonAtLeast
{ lib, buildPythonPackage, fetchPypi, fetchpatch, isPy27, pythonAtLeast
, graphviz
, multipledispatch
, numpy
@@ -23,6 +23,14 @@ buildPythonPackage rec {
sha256 = "1my94a11jzg1hv6ln8wxklbqrg6z5l2l77vr89aq0829yyxacmv7";
};

patches = [
# fix tests for pandas 1.1
(fetchpatch {
url = "https://github.com/ibis-project/ibis/commit/53ef3cefc4ae90d61f3612310cb36da2bcd11305.diff";
sha256 = "1i5yjmqridjqpggiinsjaz5spcxca5bd48vy7a0mj4mm1b5flw2m";
})
];

propagatedBuildInputs = [
multipledispatch
numpy