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

Commits on Nov 14, 2020

  1. python3Packages.dipy: 1.2.0 -> 1.3.0

    bcdarwin authored and Jonathan Ringer committed Nov 14, 2020
    Copy the full SHA
    001a975 View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 pkgs/development/python-modules/dipy/default.nix
6 changes: 4 additions & 2 deletions pkgs/development/python-modules/dipy/default.nix
Original file line number Diff line number Diff line change
@@ -9,19 +9,20 @@
, scipy
, h5py
, nibabel
, tqdm
}:

buildPythonPackage rec {
pname = "dipy";
version = "1.2.0";
version = "1.3.0";

disabled = isPy27;

src = fetchFromGitHub {
owner = "dipy";
repo = pname;
rev = version;
sha256 = "0x49lph400ndlvk419nd2g9ss4jg75xr7xh88ggv5d2ama19v7py";
sha256 = "0555abx0fwqmk6dc3im7r45d9j7r9xh6gm9mbwfwvlf7laf8h098";
};

nativeBuildInputs = [ cython packaging ];
@@ -30,6 +31,7 @@ buildPythonPackage rec {
scipy
h5py
nibabel
tqdm
];

checkInputs = [ pytest ];