lol

python312Packages.cltk: 1.3.0 -> 1.5.0 (#404302)

authored by

Gaétan Lepage and committed by
GitHub
83c45b91 23866ef1

+5 -10
+5 -10
pkgs/development/python-modules/cltk/default.nix
··· 19 19 scipy, 20 20 spacy, 21 21 stanza, 22 - stringcase, 23 22 torch, 24 23 tqdm, 25 24 26 25 # tests 27 26 pytestCheckHook, 27 + writableTmpDirAsHomeHook, 28 28 }: 29 29 buildPythonPackage rec { 30 30 pname = "cltk"; 31 - version = "1.3.0"; 32 - 31 + version = "1.5.0"; 33 32 pyproject = true; 34 33 35 34 src = fetchFromGitHub { 36 35 owner = "cltk"; 37 36 repo = "cltk"; 38 - rev = "refs/tags/v${version}"; 39 - hash = "sha256-/rdv96lnSGN+aJJmPSIan79zoXxnStokFEAjBtCLKy4="; 37 + tag = "v${version}"; 38 + hash = "sha256-aeWbfDVNn6DwW+KFh62n5RBgWp5uSWDv2RHmB27/xI4="; 40 39 }; 41 40 42 41 postPatch = '' ··· 66 65 scipy 67 66 spacy 68 67 stanza 69 - stringcase 70 68 torch 71 69 tqdm 72 70 ]; 73 71 74 72 nativeCheckInputs = [ 75 73 pytestCheckHook 74 + writableTmpDirAsHomeHook 76 75 ]; 77 - 78 - preCheck = '' 79 - export HOME=$(mktemp -d) 80 - ''; 81 76 82 77 # Most of tests fail as they require local files to be present and also internet access 83 78 doCheck = false;