depot/third_party/nixpkgs/pkgs/development/python-modules/kaggle/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

65 lines
1.3 KiB
Nix

{
bleach,
buildPythonPackage,
certifi,
charset-normalizer,
fetchPypi,
hatchling,
idna,
lib,
python-dateutil,
python-slugify,
requests,
setuptools,
six,
text-unidecode,
tqdm,
urllib3,
webencodings,
}:
buildPythonPackage rec {
pname = "kaggle";
version = "1.6.17";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Q5p96h1QOfMg/WrV7CG2iNz6cNQFy0IJW4H0HtxAG4E=";
};
build-system = [ hatchling ];
dependencies = [
bleach
certifi
charset-normalizer
idna
python-dateutil
python-slugify
requests
setuptools
six
text-unidecode
tqdm
urllib3
webencodings
];
# Tests try to access the network.
checkPhase = ''
export HOME="$TMP"
mkdir -p "$HOME/.kaggle/"
echo '{"username":"foobar","key":"00000000000000000000000000000000"}' > "$HOME/.kaggle/kaggle.json"
$out/bin/kaggle --help > /dev/null
'';
pythonImportsCheck = [ "kaggle" ];
meta = with lib; {
description = "Official API for https://www.kaggle.com, accessible using a command line tool implemented in Python 3";
mainProgram = "kaggle";
homepage = "https://github.com/Kaggle/kaggle-api";
license = licenses.asl20;
maintainers = with maintainers; [ mbalatsko ];
};
}