Loading pkgs/development/python-modules/kubernetes-asyncio/default.nix 0 → 100644 +69 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, coreutils, # build-system setuptools, # dependencies aiohttp, certifi, python-dateutil, pyyaml, six, urllib3, # tests pytestCheckHook, }: buildPythonPackage rec { pname = "kubernetes-asyncio"; version = "31.1.0"; pyproject = true; src = fetchFromGitHub { owner = "tomplus"; repo = "kubernetes_asyncio"; rev = "refs/tags/${version}"; hash = "sha256-YKBqhUeLqLiQ6bK235zTm4salnSLUxl4DUiFLQSjWqw="; }; postPatch = '' substituteInPlace kubernetes_asyncio/config/google_auth_test.py \ --replace-fail "/bin/echo" "${lib.getExe' coreutils "echo"}" ''; build-system = [ setuptools ]; dependencies = [ aiohttp certifi python-dateutil pyyaml six urllib3 ]; pythonImportsCheck = [ "kubernetes_asyncio" ]; nativeCheckInputs = [ pytestCheckHook ]; __darwinAllowLocalNetworking = true; meta = { description = "Python asynchronous client library for Kubernetes http://kubernetes.io"; homepage = "https://github.com/tomplus/kubernetes_asyncio"; changelog = "https://github.com/tomplus/kubernetes_asyncio/blob/${src.rev}/CHANGELOG.md"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ GaetanLepage ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -6845,6 +6845,8 @@ self: super: with self; { kubernetes = callPackage ../development/python-modules/kubernetes { }; kubernetes-asyncio = callPackage ../development/python-modules/kubernetes-asyncio { }; kurbopy = callPackage ../development/python-modules/kurbopy { }; l18n = callPackage ../development/python-modules/l18n { }; Loading Loading
pkgs/development/python-modules/kubernetes-asyncio/default.nix 0 → 100644 +69 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, coreutils, # build-system setuptools, # dependencies aiohttp, certifi, python-dateutil, pyyaml, six, urllib3, # tests pytestCheckHook, }: buildPythonPackage rec { pname = "kubernetes-asyncio"; version = "31.1.0"; pyproject = true; src = fetchFromGitHub { owner = "tomplus"; repo = "kubernetes_asyncio"; rev = "refs/tags/${version}"; hash = "sha256-YKBqhUeLqLiQ6bK235zTm4salnSLUxl4DUiFLQSjWqw="; }; postPatch = '' substituteInPlace kubernetes_asyncio/config/google_auth_test.py \ --replace-fail "/bin/echo" "${lib.getExe' coreutils "echo"}" ''; build-system = [ setuptools ]; dependencies = [ aiohttp certifi python-dateutil pyyaml six urllib3 ]; pythonImportsCheck = [ "kubernetes_asyncio" ]; nativeCheckInputs = [ pytestCheckHook ]; __darwinAllowLocalNetworking = true; meta = { description = "Python asynchronous client library for Kubernetes http://kubernetes.io"; homepage = "https://github.com/tomplus/kubernetes_asyncio"; changelog = "https://github.com/tomplus/kubernetes_asyncio/blob/${src.rev}/CHANGELOG.md"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ GaetanLepage ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -6845,6 +6845,8 @@ self: super: with self; { kubernetes = callPackage ../development/python-modules/kubernetes { }; kubernetes-asyncio = callPackage ../development/python-modules/kubernetes-asyncio { }; kurbopy = callPackage ../development/python-modules/kurbopy { }; l18n = callPackage ../development/python-modules/l18n { }; Loading