mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
pythonPackages.b2sdk: init at 1.1.4
This commit is contained in:
parent
087fe53de8
commit
f000c741a3
28
pkgs/development/python-modules/b2sdk/default.nix
Normal file
28
pkgs/development/python-modules/b2sdk/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, setuptools_scm, isPy27, pytestCheckHook
|
||||
, requests, arrow, logfury, tqdm }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "b2sdk";
|
||||
version = "1.1.4";
|
||||
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0g527qdda105r5g9yjh4lxzlmz34m2bdz8dydqqy09igdsmiyi9j";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "b2sdk" ];
|
||||
|
||||
nativebuildInputs = [ setuptools_scm ];
|
||||
propagatedBuildInputs = [ requests arrow logfury tqdm ];
|
||||
|
||||
# requires unpackaged dependencies like liccheck
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Client library and utilities for access to B2 Cloud Storage (backblaze).";
|
||||
homepage = "https://github.com/Backblaze/b2-sdk-python";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -713,6 +713,8 @@ in {
|
||||
|
||||
azure-synapse-spark = callPackage ../development/python-modules/azure-synapse-spark { };
|
||||
|
||||
b2sdk = callPackage ../development/python-modules/b2sdk { };
|
||||
|
||||
Babel = callPackage ../development/python-modules/Babel { };
|
||||
|
||||
babelfish = callPackage ../development/python-modules/babelfish { };
|
||||
|
Loading…
Reference in New Issue
Block a user