conda-package-handling: init at 2.2.0
This commit is contained in:
parent
e3ab5cc985
commit
14d5b95cf6
@ -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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user