f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
30 lines
766 B
Nix
30 lines
766 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
conda-package-streaming,
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "conda-package-handling";
|
|
version = "2.3.0";
|
|
src = fetchFromGitHub {
|
|
owner = "conda";
|
|
repo = "conda-package-handling";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-Mo3qCNA/NtVtrsJmJ96ST6GMt2basSh5KlFBkrJ4pGE=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|