python310Packages.blobfile: 2.0.1 -> 2.0.2

Changelog: https://github.com/christopher-hesse/blobfile/blob/v2.0.2/CHANGES.md
This commit is contained in:
Fabian Affolter 2023-04-28 10:38:05 +02:00 committed by Yt
parent 1d1d5d2724
commit cfe96dbfce

View File

@ -1,25 +1,45 @@
{ lib, buildPythonPackage, fetchPypi, pycryptodomex, filelock, urllib3, lxml }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, filelock
, lxml
, pycryptodomex
, pythonOlder
, urllib3
}:
buildPythonPackage rec {
pname = "blobfile";
version = "2.0.1";
format = "wheel";
version = "2.0.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
format = "wheel";
python = "py3";
dist = "py3";
hash = "sha256-b1Gz6UjzCpLnNKl0sk/ND2pRhB/Qg96WiJkjFIE1jaI=";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "christopher-hesse";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-vVoiNIN/LNdbedaOQ+gtj4jhzmrGri49fftHKG+K/fg=";
};
propagatedBuildInputs = [ pycryptodomex filelock urllib3 lxml ];
propagatedBuildInputs = [
pycryptodomex
filelock
urllib3
lxml
];
# Tests require a running Docker instance
doCheck = false;
pythonImportsCheck = [
"blobfile"
];
meta = with lib; {
description = "Read Google Cloud Storage, Azure Blobs, and local paths with the same interface";
homepage = "https://github.com/christopher-hesse/blobfile";
description = "Read Google Cloud Storage, Azure Blobs, and local paths with the same interface ";
changelog = "https://github.com/christopher-hesse/blobfile/blob/v${version}/CHANGES.md";
license = licenses.mit;
maintainers = with maintainers; [ happysalada ];
};