python3Packages.cytoolz: 0.11.2 -> 0.12.0
This commit is contained in:
parent
b1aa3457ab
commit
63676d7caf
1 changed files with 5 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
|||
, fetchPypi
|
||||
, isPyPy
|
||||
, pytestCheckHook
|
||||
, cython
|
||||
, toolz
|
||||
, python
|
||||
, isPy27
|
||||
|
@ -10,14 +11,16 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "cytoolz";
|
||||
version = "0.11.2";
|
||||
version = "0.12.0";
|
||||
disabled = isPy27 || isPyPy;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "ea23663153806edddce7e4153d1d407d62357c05120a4e8485bddf1bd5ab22b4";
|
||||
sha256 = "sha256-wQWwX4XgP7zWAkQ3WWjmLkT+eYwVo1Mcki1TEBjSJBI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cython ];
|
||||
|
||||
propagatedBuildInputs = [ toolz ];
|
||||
|
||||
# tests are located in cytoolz/tests, however we can't import cytoolz
|
||||
|
|
Loading…
Reference in a new issue