52 lines
1012 B
Nix
52 lines
1012 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
hatchling,
|
|
|
|
# dependencies
|
|
protobuf,
|
|
requests,
|
|
|
|
# tests
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "kagglesdk";
|
|
version = "0.1.16";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Kaggle";
|
|
repo = "kagglesdk";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-MmgX9gQ8fQU8yE/2qpw1Kz/VslVix3qUhaGkRahSxns=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
})
|