nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python312Packages.spacy-curated-transformers: 0.3.0 -> 2.1.2

Diff: https://github.com/explosion/spacy-curated-transformers/compare/refs/tags/release-v0.3.0...release-v2.1.2

Changelog: https://github.com/explosion/spacy-curated-transformers/releases/tag/v2.1.2

+12 -8
+3 -3
pkgs/development/python-modules/curated-transformers/default.nix
··· 36 36 # models from Hugging Face Hub. 37 37 pythonImportsCheck = [ "curated_transformers" ]; 38 38 39 - meta = with lib; { 39 + meta = { 40 40 description = "PyTorch library of curated Transformer models and their composable components"; 41 41 homepage = "https://github.com/explosion/curated-transformers"; 42 42 changelog = "https://github.com/explosion/curated-transformers/releases/tag/v${version}"; 43 - license = licenses.mit; 44 - maintainers = with maintainers; [ danieldk ]; 43 + license = lib.licenses.mit; 44 + maintainers = with lib.maintainers; [ danieldk ]; 45 45 }; 46 46 }
+9 -5
pkgs/development/python-modules/spacy-curated-transformers/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "spacy-curated-transformers"; 14 - version = "0.3.0"; 14 + version = "2.1.2"; 15 15 pyproject = true; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "explosion"; 19 19 repo = "spacy-curated-transformers"; 20 20 tag = "release-v${version}"; 21 - hash = "sha256-3LL0ofVsyacMzLJtttg0Tl9SlkPex7TwWL/HVF4WkfI="; 21 + hash = "sha256-Y3puV9fDN5mAugLPmXuoIbwUBpSMcmkq+oXAyYdmQew="; 22 22 }; 23 23 24 24 build-system = [ setuptools ]; 25 + 26 + pythonRelaxDeps = [ 27 + "thinc" 28 + ]; 25 29 26 30 dependencies = [ 27 31 curated-tokenizers ··· 38 34 # models from Hugging Face Hub. 39 35 pythonImportsCheck = [ "spacy_curated_transformers" ]; 40 36 41 - meta = with lib; { 37 + meta = { 42 38 description = "spaCy entry points for Curated Transformers"; 43 39 homepage = "https://github.com/explosion/spacy-curated-transformers"; 44 40 changelog = "https://github.com/explosion/spacy-curated-transformers/releases/tag/v${version}"; 45 - license = licenses.mit; 46 - maintainers = with maintainers; [ danieldk ]; 41 + license = lib.licenses.mit; 42 + maintainers = with lib.maintainers; [ danieldk ]; 47 43 }; 48 44 }