mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 06:24:08 +01:00
51 lines
1 KiB
Nix
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 ];
|
|
};
|
|
}
|