mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
Merge pull request #303845 from r-ryantm/auto-update/python312Packages.adlfs
python312Packages.adlfs: 2024.2.0 -> 2024.4.0
This commit is contained in:
commit
f2b01625bd
@ -1,29 +1,30 @@
|
||||
{ lib
|
||||
, aiohttp
|
||||
, azure-core
|
||||
, azure-datalake-store
|
||||
, azure-identity
|
||||
, azure-storage-blob
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, fsspec
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, setuptools-scm
|
||||
{
|
||||
lib,
|
||||
aiohttp,
|
||||
azure-core,
|
||||
azure-datalake-store,
|
||||
azure-identity,
|
||||
azure-storage-blob,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
fsspec,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
setuptools-scm,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "adlfs";
|
||||
version = "2024.2.0";
|
||||
version = "2024.4.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "fsspec";
|
||||
repo = pname;
|
||||
repo = "adlfs";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-/Qakr7ISlzDqunoshUf8mpWCvFXOH3haUx/C79j4RZA=";
|
||||
hash = "sha256-t+7LcjgDrKbTY/WiBqLSkt/Wh+4niulN7G5PIpWN7WU=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
@ -43,9 +44,7 @@ buildPythonPackage rec {
|
||||
# Tests require a running Docker instance
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"adlfs"
|
||||
];
|
||||
pythonImportsCheck = [ "adlfs" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Filesystem interface to Azure-Datalake Gen1 and Gen2 Storage";
|
||||
|
Loading…
Reference in New Issue
Block a user