about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/spacy/legacy.nix
blob: 3ee2feeaa96aeb990952204f0f4811ab26ce325b (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
{ lib
, fetchPypi
, buildPythonPackage
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-T33LxObI6MtOrbsAn5wKGipnRC4AMsjWd2yUcMN1mQM=";
  };

  # 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 ];
  };
}