lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.guidance-stitch: init at 0.1.4

+61
+59
pkgs/development/python-modules/guidance-stitch/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + 6 + # build-system 7 + hatch-jupyter-builder, 8 + hatch-nodejs-version, 9 + hatchling, 10 + jupyterlab, 11 + 12 + # dependencies 13 + ipywidgets, 14 + 15 + # tests 16 + nbval, 17 + pytest-cov-stub, 18 + pytestCheckHook, 19 + }: 20 + 21 + buildPythonPackage rec { 22 + pname = "guidance-stitch"; 23 + version = "0.1.4"; 24 + pyproject = true; 25 + 26 + src = fetchPypi { 27 + pname = "guidance_stitch"; 28 + inherit version; 29 + hash = "sha256-Wthz02C2AU6hzQ+TTGs+sI73ejwHQRCStZXZts0i1+w="; 30 + }; 31 + 32 + build-system = [ 33 + hatch-jupyter-builder 34 + hatch-nodejs-version 35 + hatchling 36 + jupyterlab 37 + ]; 38 + 39 + dependencies = [ 40 + ipywidgets 41 + ]; 42 + 43 + pythonImportsCheck = [ "stitch" ]; 44 + 45 + nativeCheckInputs = [ 46 + nbval 47 + pytest-cov-stub 48 + pytestCheckHook 49 + ]; 50 + 51 + __darwinAllowLocalNetworking = true; 52 + 53 + meta = { 54 + description = "Guidance language for controlling large language models"; 55 + homepage = "https://github.com/guidance-ai/guidance/tree/main/packages/python/stitch"; 56 + license = lib.licenses.mit; 57 + maintainers = with lib.maintainers; [ GaetanLepage ]; 58 + }; 59 + }
+2
pkgs/top-level/python-packages.nix
··· 5772 5772 5773 5773 guidance = callPackage ../development/python-modules/guidance { }; 5774 5774 5775 + guidance-stitch = callPackage ../development/python-modules/guidance-stitch { }; 5776 + 5775 5777 guidata = callPackage ../development/python-modules/guidata { }; 5776 5778 5777 5779 gumath = callPackage ../development/python-modules/gumath { };