Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 26 lines 601 B view raw
1{ lib 2, fetchPypi 3, buildPythonPackage 4, pytestCheckHook 5}: 6 7buildPythonPackage rec { 8 pname = "spacy-legacy"; 9 version = "3.0.5"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "sha256-Uy94rjFllSj622RTzd6UJaQmIniCw4gpeq/X57QcIpA="; 14 }; 15 16 # checkInputs = [ pytestCheckHook spacy ]; 17 doCheck = false; 18 pythonImportsCheck = [ "spacy_legacy" ]; 19 20 meta = with lib; { 21 description = "A Path interface for local and cloud bucket storage"; 22 homepage = "https://github.com/justindujardin/pathy"; 23 license = licenses.asl20; 24 maintainers = with maintainers; [ melling ]; 25 }; 26}