Martin Weinelt d1ac5e2f57
python3Packages.ogmios: 1.3.0 -> 1.4.2
This commit was automatically generated using update-python-libraries.
2025-04-03 23:12:41 +02:00

50 lines
819 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
setuptools,
# Python deps
cachetools,
cardano-tools,
coloredlogs,
orjson,
pydantic,
websockets,
}:
buildPythonPackage rec {
pname = "ogmios";
version = "1.4.2";
pyproject = true;
src = fetchPypi {
pname = "ogmios";
inherit version;
hash = "sha256-L+BBuWhcQhnE9f+b860401WKTUcFxf7Ehji1MHCNqjo=";
};
build-system = [
hatchling
setuptools
];
dependencies = [
cachetools
cardano-tools
coloredlogs
orjson
pydantic
websockets
];
pythonImportsCheck = [ "ogmios" ];
meta = with lib; {
description = "Python client for Ogmios";
homepage = "https://gitlab.com/viperscience/ogmios-python";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ t4ccer ];
};
}