depot/third_party/nixpkgs/pkgs/development/python-modules/blobfile/default.nix
Default email 87f9c27ba9 Project import generated by Copybara.
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
2023-04-12 14:48:02 +02:00

26 lines
712 B
Nix

{ lib, buildPythonPackage, fetchPypi, pycryptodomex, filelock, urllib3, lxml }:
buildPythonPackage rec {
pname = "blobfile";
version = "2.0.1";
format = "wheel";
src = fetchPypi {
inherit pname version;
format = "wheel";
python = "py3";
dist = "py3";
hash = "sha256-b1Gz6UjzCpLnNKl0sk/ND2pRhB/Qg96WiJkjFIE1jaI=";
};
propagatedBuildInputs = [ pycryptodomex filelock urllib3 lxml ];
doCheck = false;
meta = with lib; {
homepage = "https://github.com/christopher-hesse/blobfile";
description = "Read Google Cloud Storage, Azure Blobs, and local paths with the same interface ";
license = licenses.mit;
maintainers = with maintainers; [ happysalada ];
};
}