nixpkgs/pkgs/development/python-modules/bce-python-sdk/default.nix
Martin Weinelt 0ae68654eb python3Packages.bce-python-sdk: 0.9.57 -> 0.9.59
This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:20 +01:00

51 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
fetchpatch,
setuptools,
pycryptodome,
six,
}:
let
version = "0.9.59";
in
buildPythonPackage {
pname = "bce-python-sdk";
inherit version;
pyproject = true;
src = fetchPypi {
pname = "bce_python_sdk";
inherit version;
hash = "sha256-VK0JOUsKW6+Mjvh6yRn50RHBsFNghihrgK2nFlHY5Mg=";
};
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 ];
};
}