python3Packages.thinc: 8.1.10 -> 8.2.0
This commit is contained in:
parent
80b228847b
commit
0a0cf7601f
1 changed files with 12 additions and 2 deletions
|
@ -21,6 +21,7 @@
|
|||
, pytestCheckHook
|
||||
, python
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, srsly
|
||||
, tqdm
|
||||
, typing-extensions
|
||||
|
@ -29,16 +30,25 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "thinc";
|
||||
version = "8.1.10";
|
||||
version = "8.2.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-bEpI19oH4EToSmjLubIvMvhJCZWiurC/xg5BLRSvuZE=";
|
||||
hash = "sha256-gsoeeDHjVNdMZ3bth9vXP0qtWe0ljIdGy+hoaIGG/Ek=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace setup.cfg \
|
||||
--replace "preshed>=3.0.2,<3.1.0" "preshed"
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
cython
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
|
|
Loading…
Reference in a new issue