1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

python.pkgs.thinc: loosen version constraints

This commit is contained in:
Robert Schütz 2018-04-07 16:12:42 +02:00 committed by Frederik Rietdijk
parent 5600034f91
commit c9330ca79b

View file

@ -28,13 +28,18 @@
buildPythonPackage rec {
pname = "thinc";
version = "6.10.2";
name = pname + "-" + version;
src = fetchPypi {
inherit pname version;
sha256 = "0xia81wvfrhyriywab184s49g8rpl42vcf5fy3x6xxw50a2yn7cs";
};
postPatch = ''
substituteInPlace setup.py \
--replace "msgpack-python==" "msgpack-python>=" \
--replace "msgpack-numpy==" "msgpack-numpy>="
'';
propagatedBuildInputs = [
cython
cymem