Files
nixpkgs/pkgs/development/python-modules/conda-libmamba-solver/default.nix
T
Martin Weinelt db30c5559a python3Packages.conda-libmamba-solver: 25.4.0 -> 25.11.0
This commit was automatically generated using update-python-libraries.
2026-02-01 16:42:33 +01:00

45 lines
944 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
hatch-vcs,
boltons,
libmambapy,
}:
buildPythonPackage rec {
pname = "conda-libmamba-solver";
version = "25.11.0";
pyproject = true;
src = fetchFromGitHub {
inherit pname version;
owner = "conda";
repo = "conda-libmamba-solver";
tag = version;
hash = "sha256-t4mwQ9nsduicT1sL1TQLbuCoS4r7K/GaXyBFOO+3/m8=";
};
build-system = [
hatchling
hatch-vcs
];
dependencies = [
boltons
libmambapy
];
# this package depends on conda for the import to run successfully, but conda depends on this package to execute.
# pythonImportsCheck = [ "conda_libmamba_solver" ];
pythonRemoveDeps = [ "conda" ];
meta = {
description = "Libmamba based solver for conda";
homepage = "https://github.com/conda/conda-libmamba-solver";
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.ericthemagician ];
};
}