conda-package-handling: init at 2.2.0

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

View File

@ -0,0 +1,30 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
conda-package-streaming,
}:
buildPythonPackage rec {
pname = "conda-package-handling";
version = "2.2.0";
src = fetchFromGitHub {
owner = "conda";
repo = "conda-package-handling";
rev = version;
hash = "sha256-WeGfmT6lLwcwhheLBPMFcVMudY+zPsvTuXuOsiEAorQ=";
};
pyproject = true;
build-system = [ setuptools ];
dependencies = [ conda-package-streaming ];
pythonImportsCheck = [ "conda_package_handling" ];
meta = {
description = "Create and extract conda packages of various formats";
homepage = "https://github.com/conda/conda-package-handling";
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-handling = callPackage ../development/python-modules/conda-package-handling { };
conda-package-streaming = callPackage ../development/python-modules/conda-package-streaming { };
confection = callPackage ../development/python-modules/confection { };