Files
nixpkgs/pkgs/development/python-modules/blobfile/default.nix
T
Martin Weinelt 382a8d9a26 python3Packages.blobfile: 3.0.0 -> 3.1.0
https://github.com/christopher-hesse/blobfile/blob/v3.1.0/CHANGES.md

This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:21 +01:00

43 lines
935 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
filelock,
lxml,
pycryptodomex,
urllib3,
}:
buildPythonPackage rec {
pname = "blobfile";
version = "3.1.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "christopher-hesse";
repo = "blobfile";
tag = "v${version}";
hash = "sha256-aTHEJ1P+v9IWXPg9LN+KG1TlEVJh0qTl8J41iWpoPWk=";
};
propagatedBuildInputs = [
pycryptodomex
filelock
urllib3
lxml
];
# Tests require a running Docker instance
doCheck = false;
pythonImportsCheck = [ "blobfile" ];
meta = {
description = "Read Google Cloud Storage, Azure Blobs, and local paths with the same interface";
homepage = "https://github.com/christopher-hesse/blobfile";
changelog = "https://github.com/christopher-hesse/blobfile/blob/${src.tag}/CHANGES.md";
license = lib.licenses.unlicense;
maintainers = with lib.maintainers; [ happysalada ];
};
}