Loading pkgs/development/python-modules/conda-package-handling/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 Loading
pkgs/development/python-modules/conda-package-handling/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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