python3Packages.smart-open: 7.2.0 -> 7.3.0.post1

https://github.com/piskvorky/smart_open/releases/tag/v7.3.0.post1

This commit was automatically generated using update-python-libraries.

Changed files
+18 -5
pkgs
development
python-modules
smart-open
+18 -5
pkgs/development/python-modules/smart-open/default.nix
···
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
+
awscli,
azure-common,
azure-core,
azure-storage-blob,
···
google-cloud-storage,
requests,
moto,
+
numpy,
paramiko,
+
pytest-cov-stub,
pytestCheckHook,
+
pyopenssl,
responses,
setuptools,
+
setuptools-scm,
wrapt,
zstandard,
}:
buildPythonPackage rec {
pname = "smart-open";
-
version = "7.2.0";
+
version = "7.3.0.post1";
pyproject = true;
disabled = pythonOlder "3.7";
···
owner = "RaRe-Technologies";
repo = "smart_open";
tag = "v${version}";
-
hash = "sha256-/16Is90235scTAYUW/65QxcTddD0+aiG5TLzYsBUE1A=";
+
hash = "sha256-79q1uQML7WMHsaKQ7+4JA6LpeysJRA4fFxYVqQFntag=";
};
-
build-system = [ setuptools ];
+
build-system = [
+
setuptools
+
setuptools-scm
+
];
dependencies = [ wrapt ];
···
pythonImportsCheck = [ "smart_open" ];
nativeCheckInputs = [
+
awscli
moto
+
numpy
+
pytest-cov-stub
pytestCheckHook
+
pyopenssl
responses
]
+
++ moto.optional-dependencies.server
++ lib.flatten (lib.attrValues optional-dependencies);
-
enabledTestPaths = [ "smart_open" ];
+
enabledTestPaths = [ "tests" ];
disabledTests = [
# https://github.com/RaRe-Technologies/smart_open/issues/784
···
meta = with lib; {
changelog = "https://github.com/piskvorky/smart_open/releases/tag/${src.tag}";
description = "Library for efficient streaming of very large file";
-
homepage = "https://github.com/RaRe-Technologies/smart_open";
+
homepage = "https://github.com/piskvorky/smart_open";
license = licenses.mit;
};
}