Merge pull request #62501 from risicle/ris-sparse-no-py2

pythonPackages.sparse: disable for py2.7
This commit is contained in:
Mario Rodas 2019-06-02 09:41:16 -05:00 committed by GitHub
commit 07fb0bed14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";