1{ lib
2, fetchPypi
3, buildPythonPackage
4}:
5
6buildPythonPackage rec {
7 pname = "spacy-legacy";
8 version = "3.0.8";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "b4725c5c161f0685ab4fce3fc912bc68aefdb7e102ba9848e852bb5842256c2f";
13 };
14
15 # checkInputs = [ pytestCheckHook spacy ];
16 doCheck = false;
17 pythonImportsCheck = [ "spacy_legacy" ];
18
19 meta = with lib; {
20 description = "A Path interface for local and cloud bucket storage";
21 homepage = "https://github.com/justindujardin/pathy";
22 license = licenses.asl20;
23 maintainers = with maintainers; [ melling ];
24 };
25}