mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
42 lines
758 B
Nix
42 lines
758 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
, fsspec
|
||
|
, oss2
|
||
|
, pythonOlder
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "ossfs";
|
||
|
version = "2021.8.0";
|
||
|
format = "setuptools";
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "fsspec";
|
||
|
repo = pname;
|
||
|
rev = version;
|
||
|
hash = "sha256-bORiE3sIDNESjEizdzsJYZTSMbcqpbjostXo+0NQDfA=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
fsspec
|
||
|
oss2
|
||
|
];
|
||
|
|
||
|
# Most tests require network access
|
||
|
doCheck = false;
|
||
|
|
||
|
pythonImportsCheck = [
|
||
|
"ossfs"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Filesystem for Alibaba Cloud (Aliyun) Object Storage System (OSS)";
|
||
|
homepage = "https://github.com/fsspec/ossfs";
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|