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: fc277721f0ac
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 07fb0bed14e7
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 2, 2019

  1. pythonPackages.sparse: disable for py2.7

    upstream dropped support pydata/sparse#235
    risicle committed Jun 2, 2019
    Copy the full SHA
    59e5093 View commit details
  2. Merge pull request #62501 from risicle/ris-sparse-no-py2

    pythonPackages.sparse: disable for py2.7
    marsam authored Jun 2, 2019
    Copy the full SHA
    07fb0be View commit details
Showing with 3 additions and 0 deletions.
  1. +3 −0 pkgs/development/python-modules/sparse/default.nix
3 changes: 3 additions & 0 deletions pkgs/development/python-modules/sparse/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, numpy
, scipy
, numba
@@ -11,6 +12,8 @@ buildPythonPackage rec {
pname = "sparse";
version = "0.7.0";

disabled = !isPy3k;

src = fetchPypi {
inherit pname version;
sha256 = "0ija4pl8wg36ldsdv5jmqr5i75qi17vijcwwf2jdn1k15kqg35j4";