5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
35 lines
711 B
Nix
35 lines
711 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools-scm
|
|
, requests
|
|
, pyjwt
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyixapi";
|
|
version = "0.2.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-c5a8Ldbzgh8gXuCDYbKk9zR6AoiBF3Y/VQvGlSwXpR4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
propagatedBuildInputs = [
|
|
requests
|
|
pyjwt
|
|
];
|
|
|
|
pythonImportsCheck = [ "pyixapi" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/peering-manager/pyixapi/";
|
|
changelog = "https://github.com/peering-manager/pyixapi/releases/tag/${version}";
|
|
description = "Python API client library for IX-API";
|
|
license = licenses.asl20;
|
|
maintainers = teams.wdz.members;
|
|
};
|
|
}
|