Commit 67df3cd0 authored by Yureka's avatar Yureka
Browse files

pyixapi: init at 0.2.1

parent 299e0b95
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -8319,6 +8319,8 @@ self: super: with self; {
  pyisy = callPackage ../development/python-modules/pyisy { };
  pyixapi = callPackage ../development/python-modules/pyixapi { };
  pykrakenapi = callPackage ../development/python-modules/pykrakenapi { };
  pylddwrap = callPackage ../development/python-modules/pylddwrap { };