python313Packages.python-join-api: init at 0.0.9 (#428760)

This commit is contained in:
Martin Weinelt
2025-07-29 00:36:07 +02:00
committed by GitHub
3 changed files with 42 additions and 1 deletions
@@ -0,0 +1,38 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
flask,
requests,
}:
buildPythonPackage rec {
pname = "python-join-api";
version = "0.0.9";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-FGqOqOd9VVH9hxMqYH7M10W+g5tpImxs+K4AHJJZRaE=";
};
build-system = [ setuptools ];
dependencies = [
flask
requests
];
pythonImportsCheck = [ "pyjoin" ];
# No tests
doCheck = false;
meta = {
description = "Python API for interacting with Join by joaoapps";
homepage = "https://github.com/nkgilley/python-join-api";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jamiemagee ];
};
}
@@ -2852,7 +2852,8 @@
++ hdate.optional-dependencies.astral;
"joaoapps_join" =
ps: with ps; [
]; # missing inputs: python-join-api
python-join-api
];
"juicenet" =
ps: with ps; [
];
+2
View File
@@ -14580,6 +14580,8 @@ self: super: with self; {
python-jenkins = callPackage ../development/python-modules/python-jenkins { };
python-join-api = callPackage ../development/python-modules/python-join-api { };
python-jose = callPackage ../development/python-modules/python-jose { };
python-json-logger = callPackage ../development/python-modules/python-json-logger { };