Unverified Commit 14d5b95c authored by Eric Yen's avatar Eric Yen Committed by Sandro Jäckel
Browse files

conda-package-handling: init at 2.2.0

parent e3ab5cc9
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };