mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
34 lines
495 B
Nix
34 lines
495 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
setuptools,
|
|
wheel,
|
|
|
|
# deps
|
|
anthropic,
|
|
...
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "llm-claude-3";
|
|
version = "0.7";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "simonw";
|
|
repo = "llm-claude-3";
|
|
rev = version;
|
|
hash = "sha256-5qF5BK319PNzB4XsLdYvtyq/SxBDdHJ9IoKWEnvNRp4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
dependencies = [ anthropic ];
|
|
|
|
dontCheckRuntimeDeps = true;
|
|
}
|