Files
2026-03-09 05:54:43 +00:00

52 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
fetchpatch,
setuptools,
pycryptodome,
six,
}:
let
version = "0.9.63";
in
buildPythonPackage {
pname = "bce-python-sdk";
inherit version;
pyproject = true;
src = fetchPypi {
pname = "bce_python_sdk";
inherit version;
hash = "sha256-DIC8OsEooKFEuuO43/Hzl/QsMLNvdnfjo52N+Od7EIg=";
};
patches = [
# From https://github.com/baidubce/bce-sdk-python/pull/15 . Upstream
# doesn't seem to be responsive, the patch there doesn't apply cleanly on
# this version, so a vendored patch was produced by running:
#
# git show -- setup.py baidubce
#
# in the Git checkout of the PR above.
./no-future.patch
];
build-system = [ setuptools ];
dependencies = [
pycryptodome
six
];
pythonImportsCheck = [ "baidubce" ];
meta = {
description = "Baidu Cloud Engine SDK for python";
homepage = "https://github.com/baidubce/bce-sdk-python";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ kyehn ];
};
}