stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / python-modules / ossfs / default.nix
blob89aea5f39c7c5cb66bd4000bf422c47a1966287b
2   lib,
3   aiooss2,
4   buildPythonPackage,
5   fetchFromGitHub,
6   fsspec,
7   oss2,
8   pythonOlder,
9   setuptools-scm,
12 buildPythonPackage rec {
13   pname = "ossfs";
14   version = "2023.12.0";
15   format = "pyproject";
17   disabled = pythonOlder "3.8";
19   src = fetchFromGitHub {
20     owner = "fsspec";
21     repo = pname;
22     tag = version;
23     hash = "sha256-N1NkpI8inGJCf0xuc+FFmVX85CS7vqzoNddxZ9kqEk0=";
24   };
26   pythonRelaxDeps = [
27     "aiooss2"
28     "fsspec"
29     "oss2"
30   ];
32   nativeBuildInputs = [
33     setuptools-scm
34   ];
36   propagatedBuildInputs = [
37     aiooss2
38     fsspec
39     oss2
40   ];
42   # Most tests require network access
43   doCheck = false;
45   pythonImportsCheck = [ "ossfs" ];
47   meta = with lib; {
48     description = "Filesystem for Alibaba Cloud (Aliyun) Object Storage System (OSS)";
49     homepage = "https://github.com/fsspec/ossfs";
50     changelog = "https://github.com/fsspec/ossfs/releases/tag/${version}";
51     license = licenses.asl20;
52     maintainers = with maintainers; [ fab ];
53   };