mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-19 07:01:12 +00:00
50 lines
865 B
Nix
50 lines
865 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
uv-build,
|
|
|
|
# dependencies
|
|
httpx,
|
|
pydantic,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "genai-prices";
|
|
version = "0.0.61";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pydantic";
|
|
repo = "genai-prices";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-3w3V6uIeRBTpc2rtkVRVsLlWGzHHksklv3YyCw6/VEI=";
|
|
};
|
|
|
|
sourceRoot = "${finalAttrs.src.name}/packages/python";
|
|
|
|
build-system = [
|
|
uv-build
|
|
];
|
|
|
|
dependencies = [
|
|
httpx
|
|
pydantic
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"genai_prices"
|
|
];
|
|
|
|
doCheck = false; # no tests
|
|
|
|
meta = {
|
|
description = "Calculate prices for calling LLM inference APIs";
|
|
homepage = "https://github.com/pydantic/genai-prices";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ hexa ];
|
|
};
|
|
})
|