ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / spacy / legacy.nix
blob3ee2feeaa96aeb990952204f0f4811ab26ce325b
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 }:
6 buildPythonPackage rec {
7   pname = "spacy-legacy";
8   version = "3.0.9";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "sha256-T33LxObI6MtOrbsAn5wKGipnRC4AMsjWd2yUcMN1mQM=";
13   };
15   # checkInputs = [ pytestCheckHook spacy ];
16   doCheck = false;
17   pythonImportsCheck = [ "spacy_legacy" ];
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   };