python3Packages.kagglesdk: init at 0.1.15

This commit is contained in:
Gaetan Lepage
2026-01-16 13:54:31 +00:00
parent f9848aa099
commit 8555cf6d9e
2 changed files with 53 additions and 0 deletions
@@ -0,0 +1,51 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
hatchling,
# dependencies
protobuf,
requests,
# tests
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "kagglesdk";
version = "0.1.15";
pyproject = true;
src = fetchFromGitHub {
owner = "Kaggle";
repo = "kagglesdk";
tag = "v${finalAttrs.version}";
hash = "sha256-u945sytmPUEYRNvT8v/O3HBhJoLnECPAT3GdvtBkBV4=";
};
build-system = [
hatchling
];
dependencies = [
protobuf
requests
];
pythonImportsCheck = [ "kagglesdk" ];
# The two available tests fail with:
# AssertionError: 'https://api.kaggle.com' != 'https://www.kaggle.com'
doCheck = false;
meta = {
description = "Bindings to access Kaggle endpoints";
homepage = "https://github.com/Kaggle/kagglesdk";
changelog = "https://github.com/Kaggle/kagglesdk/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
})
+2
View File
@@ -8007,6 +8007,8 @@ self: super: with self; {
kagglehub = callPackage ../development/python-modules/kagglehub { };
kagglesdk = callPackage ../development/python-modules/kagglesdk { };
kahip = toPythonModule (
pkgs.kahip.override {
pythonSupport = true;