python3Packages.gotify: init at 0.6.0 (#382608)
* maintainers: add joblade * python3Packages.gotify: init at 0.6.0
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user