mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 14:10:33 +03:00
80 lines
1.4 KiB
Nix
80 lines
1.4 KiB
Nix
{
|
|
aiohttp,
|
|
apscheduler,
|
|
beautifulsoup4,
|
|
brotli,
|
|
buildPythonPackage,
|
|
colorama,
|
|
fetchPypi,
|
|
httpx,
|
|
lib,
|
|
lxml,
|
|
pillow,
|
|
pycryptodomex,
|
|
pyjwt,
|
|
pyyaml,
|
|
qrcode,
|
|
qrcode-terminal,
|
|
rsa,
|
|
setuptools,
|
|
setuptools-scm,
|
|
tqdm,
|
|
yarl,
|
|
nix-update-script,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "bilibili-api-python";
|
|
version = "17.1.2";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "bilibili_api_python";
|
|
inherit version;
|
|
hash = "sha256-pZrn78/uIlivT+OSlNyrbO6vuxBgeigfdZ9AScOM1Ak=";
|
|
};
|
|
|
|
# The upstream uses requirements.txt, which overly strict version constraints.
|
|
pythonRelaxDeps = [
|
|
"beautifulsoup4"
|
|
"lxml"
|
|
];
|
|
|
|
build-system = [
|
|
setuptools-scm
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
aiohttp
|
|
beautifulsoup4
|
|
colorama
|
|
lxml
|
|
pyyaml
|
|
brotli
|
|
httpx
|
|
qrcode
|
|
apscheduler
|
|
rsa
|
|
pillow
|
|
tqdm
|
|
yarl
|
|
pycryptodomex
|
|
pyjwt
|
|
qrcode-terminal
|
|
];
|
|
|
|
# tests require network
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "bilibili_api" ];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
changelog = "https://github.com/Nemo2011/bilibili-api/releases/tag/${version}";
|
|
description = "Python module providing convenient integration for various Bilibili API along with some additional common features";
|
|
homepage = "https://nemo2011.github.io/bilibili-api";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ moraxyc ];
|
|
};
|
|
}
|