Philip Taron 42fa505cf7 python3Packages.llm-*: use llm in the dependencies
There's no circular dependency problems anymore.
2025-05-31 20:52:40 -07:00

46 lines
918 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
click,
pytestCheckHook,
pyyaml,
pytest-icdiff,
writableTmpDirAsHomeHook,
}:
buildPythonPackage rec {
pname = "symbex";
version = "2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "simonw";
repo = "symbex";
tag = version;
hash = "sha256-swg98z4DpQJ5rq7tdsd3FofbYF7O5S+9ZR0weoM2DoI=";
};
build-system = [ setuptools ];
dependencies = [ click ];
pythonImportsCheck = [ "symbex" ];
nativeCheckInputs = [
pytestCheckHook
pyyaml
pytest-icdiff
writableTmpDirAsHomeHook
];
meta = {
description = "Find the Python code for specified symbols";
homepage = "https://github.com/simonw/symbex";
changelog = "https://github.com/simonw/symbex/releases/tag/${version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ philiptaron ];
};
}