python3Packages.srsly: add missing cython dependency

This commit is contained in:
Jonathan Ringer 2020-06-08 11:57:36 -07:00 committed by Frederik Rietdijk
parent 88264ac51a
commit 78d0cda943

View file

@ -3,6 +3,7 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, cython
, mock
, numpy
, pathlib
@ -19,6 +20,8 @@ buildPythonPackage rec {
sha256 = "fa3c7375be8fe75f23c27feafbfb5f738d55ffdbf02964c6896fb7684f519a52";
};
nativeBuildInputs = [ cython ];
propagatedBuildInputs = lib.optional (pythonOlder "3.4") pathlib;
checkInputs = [