about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/spacy/legacy.nix
blob: 9bb37e9beb1806c50e2df330fcde1e945c4e3498 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, fetchPypi
, buildPythonPackage
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "spacy-legacy";
  version = "3.0.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b4725c5c161f0685ab4fce3fc912bc68aefdb7e102ba9848e852bb5842256c2f";
  };

  # checkInputs = [ pytestCheckHook spacy ];
  doCheck = false;
  pythonImportsCheck = [ "spacy_legacy" ];

  meta = with lib; {
    description = "A Path interface for local and cloud bucket storage";
    homepage = "https://github.com/justindujardin/pathy";
    license = licenses.asl20;
    maintainers = with maintainers; [ melling ];
  };
}