Skip to content

Commit

Permalink
python2Packages.cytoolz: disable
Browse files Browse the repository at this point in the history
no longer compatibled with python2

```
    File "cytoolz/itertoolz.pyx", line 15, in init cytoolz.itertoolz
      from itertools import chain, islice, zip_longest
  ImportError: cannot import name zip_longest
```
  • Loading branch information
Jonathan Ringer committed Oct 16, 2020
1 parent 79944bb commit 7cd1301
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pkgs/development/python-modules/cytoolz/default.nix
Expand Up @@ -6,20 +6,19 @@
, toolz
, python
, fetchpatch
, isPy27
}:

buildPythonPackage rec {
pname = "cytoolz";
version = "0.11.0";
disabled = isPy27 || isPyPy;

src = fetchPypi {
inherit pname version;
sha256 = "c64f3590c3eb40e1548f0d3c6b2ccde70493d0b8dc6cc7f9f3fec0bb3dcd4222";
};

# Extension types
disabled = isPyPy;

checkInputs = [ nose ];
propagatedBuildInputs = [ toolz ];

Expand Down

0 comments on commit 7cd1301

Please sign in to comment.