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: 23e6b96bc2e9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 219505f44f53
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 30, 2018

  1. python.pkgs.h5py: disable tests

    Robert Schütz committed Aug 30, 2018
    Copy the full SHA
    219505f View commit details
Showing with 3 additions and 0 deletions.
  1. +3 −0 pkgs/development/python-modules/h5py/default.nix
3 changes: 3 additions & 0 deletions pkgs/development/python-modules/h5py/default.nix
Original file line number Diff line number Diff line change
@@ -37,6 +37,9 @@ in buildPythonPackage rec {
propagatedBuildInputs = [ numpy six]
++ optionals mpiSupport [ mpi4py openssh ];

# https://github.com/h5py/h5py/issues/1088
doCheck = false;

meta = {
description =
"Pythonic interface to the HDF5 binary data format";