conda-package-streaming: init at 0.9.0

This commit is contained in:
Eric Yen 2024-03-16 23:18:46 -07:00 committed by Sandro Jäckel
parent 1335025b1f
commit e3ab5cc985
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
flit-core,
requests,
zstandard,
}:
buildPythonPackage rec {
pname = "conda-package-streaming";
version = "0.9.0";
pyproject = true;
src = fetchFromGitHub {
owner = "conda";
repo = "conda-package-streaming";
rev = "v${version}";
hash = "sha256-UTql2M+9eFDuHOwLYYKJ751wEcOfLJYzfU6+WF8Je2g=";
};
build-system = [ flit-core ];
dependencies = [
requests
zstandard
];
pythonImportsCheck = [ "conda_package_streaming" ];
meta = {
description = "An efficient library to read from new and old format .conda and .tar.bz2 conda packages.";
homepage = "https://github.com/conda/conda-package-streaming";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.ericthemagician ];
};
}

View File

@ -2396,6 +2396,8 @@ self: super: with self; {
conda-libmamba-solver = callPackage ../development/python-modules/conda-libmamba-solver { };
conda-package-streaming = callPackage ../development/python-modules/conda-package-streaming { };
confection = callPackage ../development/python-modules/confection { };
configargparse = callPackage ../development/python-modules/configargparse { };