nixpkgs/pkgs/development/python-modules/pyixapi/default.nix
Martin Weinelt 81fd9810a8 python3Packages.pyixapi: 0.2.6 -> 0.2.7
https://github.com/peering-manager/pyixapi/releases/tag/0.2.7

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:58 +01:00

42 lines
825 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pyjwt,
pytestCheckHook,
requests,
}:
buildPythonPackage rec {
pname = "pyixapi";
version = "0.2.7";
pyproject = true;
src = fetchFromGitHub {
owner = "peering-manager";
repo = "pyixapi";
tag = version;
hash = "sha256-pKIm9YCWf5HCwJ76NLm6AmcJWGVErZu9dwl23p8maXs=";
};
pythonRelaxDeps = [ "pyjwt" ];
build-system = [ poetry-core ];
dependencies = [
requests
pyjwt
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pyixapi" ];
meta = {
description = "Python API client library for IX-API";
homepage = "https://github.com/peering-manager/pyixapi/";
changelog = "https://github.com/peering-manager/pyixapi/releases/tag/${src.tag}";
license = lib.licenses.asl20;
};
}