diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index e97b1d80aec8..10a9c46202a0 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -11658,6 +11658,12 @@ githubId = 1385934; keys = [ { fingerprint = "3A13 5C15 E1D5 850D 2F90 AB25 6E14 46DD 451C 6BAF"; } ]; }; + joblade = { + email = "bladeur13@free.fr"; + github = "Jo-Blade"; + githubId = 59778661; + name = "Jo Blade"; + }; jobojeha = { email = "jobojeha@jeppener.de"; github = "jobojeha"; diff --git a/pkgs/development/python-modules/gotify/default.nix b/pkgs/development/python-modules/gotify/default.nix new file mode 100644 index 000000000000..9b1118937bc7 --- /dev/null +++ b/pkgs/development/python-modules/gotify/default.nix @@ -0,0 +1,68 @@ +{ + lib, + stdenv, + buildPythonPackage, + fetchFromGitHub, + flit-core, + nix-update-script, + httpx, + websockets, + pytestCheckHook, + pytest-asyncio, + typeguard, + gotify-server, +}: + +buildPythonPackage rec { + pname = "gotify"; + version = "0.6.0"; + pyproject = true; + + src = fetchFromGitHub { + owner = "d-k-bo"; + repo = "python-gotify"; + tag = "v${version}"; + hash = "sha256-epm8m2W+ChOvWHZi2ruAD+HJGj+V7NfhmFLKeeqcpoI="; + }; + + build-system = [ flit-core ]; + + dependencies = [ + httpx + websockets + ]; + + # tests raise an exception if the system is not Linux or Windows + doCheck = !stdenv.isDarwin; + + # tests require gotify-server to be located in ./tests/test-server/gotify-linux-{arch} + postPatch = '' + ln -s "${gotify-server}/bin/server" ./tests/test-server/gotify-linux-386 + ln -s "${gotify-server}/bin/server" ./tests/test-server/gotify-linux-amd64 + ln -s "${gotify-server}/bin/server" ./tests/test-server/gotify-linux-arm-7 + ln -s "${gotify-server}/bin/server" ./tests/test-server/gotify-linux-arm64 + ''; + + nativeCheckInputs = [ + pytestCheckHook + pytest-asyncio + typeguard + gotify-server + ]; + + pythonImportsCheck = [ + "gotify" + ]; + + passthru.updateScript = nix-update-script { }; + + meta = { + changelog = "https://github.com/d-k-bo/python-gotify/releases/tag/v${version}"; + description = "Python library to access your gotify server"; + homepage = "https://github.com/d-k-bo/python-gotify"; + license = lib.licenses.mit; + maintainers = [ + lib.maintainers.joblade + ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 46fb119c506e..06abbbbc8174 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5858,6 +5858,8 @@ self: super: with self; { gophish = callPackage ../development/python-modules/gophish { }; + gotify = callPackage ../development/python-modules/gotify { }; + gorilla = callPackage ../development/python-modules/gorilla { }; goslide-api = callPackage ../development/python-modules/goslide-api { };