forked from mirrors/nixpkgs
python310Packages.oss2: 2.16.0 -> 2.17.0
Changelog: https://github.com/aliyun/aliyun-oss-python-sdk/releases/tag/2.17.0
This commit is contained in:
parent
02f05bbf92
commit
96a3364aa0
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "oss2";
|
pname = "oss2";
|
||||||
version = "2.16.0";
|
version = "2.17.0";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
@ -24,8 +24,8 @@ buildPythonPackage rec {
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "aliyun";
|
owner = "aliyun";
|
||||||
repo = "aliyun-oss-python-sdk";
|
repo = "aliyun-oss-python-sdk";
|
||||||
rev = version;
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-Q8U7zMlqpKSoW99MBm9p0AnrGZY7M9oRNImMNJaEjSw=";
|
hash = "sha256-EL6qbtVyOJ2RGw3sZiRJouqVNLBMUKGycAZl31M1+oQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -57,10 +57,13 @@ buildPythonPackage rec {
|
||||||
# Tests require network access
|
# Tests require network access
|
||||||
"tests/test_api_base.py"
|
"tests/test_api_base.py"
|
||||||
"tests/test_async_fetch_task.py"
|
"tests/test_async_fetch_task.py"
|
||||||
|
"tests/test_bucket_access_monitor.py"
|
||||||
"tests/test_bucket_cname.py"
|
"tests/test_bucket_cname.py"
|
||||||
"tests/test_bucket_inventory.py"
|
"tests/test_bucket_inventory.py"
|
||||||
"tests/test_bucket_meta_query.py"
|
"tests/test_bucket_meta_query.py"
|
||||||
"tests/test_bucket_replication.py"
|
"tests/test_bucket_replication.py"
|
||||||
|
"tests/test_bucket_resource_group.py"
|
||||||
|
"tests/test_bucket_style.py"
|
||||||
"tests/test_bucket_transfer_acceleration.py"
|
"tests/test_bucket_transfer_acceleration.py"
|
||||||
"tests/test_bucket_versioning.py"
|
"tests/test_bucket_versioning.py"
|
||||||
"tests/test_bucket_worm.py"
|
"tests/test_bucket_worm.py"
|
||||||
|
@ -105,6 +108,7 @@ buildPythonPackage rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Alibaba Cloud OSS SDK for Python";
|
description = "Alibaba Cloud OSS SDK for Python";
|
||||||
homepage = "https://github.com/aliyun/aliyun-oss-python-sdk";
|
homepage = "https://github.com/aliyun/aliyun-oss-python-sdk";
|
||||||
|
changelog = "https://github.com/aliyun/aliyun-oss-python-sdk/releases/tag/${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ fab ];
|
maintainers = with maintainers; [ fab ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue