biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / conda-inject / default.nix
blob78d57f748bb1c69c9b82ac15fc62cc3889c4fcd3
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
6   # build-system
7   poetry-core,
9   # dependencies
10   pyyaml,
13 buildPythonPackage rec {
14   pname = "conda-inject";
15   version = "1.3.2";
16   pyproject = true;
18   src = fetchFromGitHub {
19     owner = "koesterlab";
20     repo = "conda-inject";
21     rev = "refs/tags/v${version}";
22     hash = "sha256-M4+bz7ZuHlcF8tF5kSCUjjkIHG75eCCW1IJxcwxNL6o=";
23   };
25   build-system = [
26     poetry-core
27   ];
29   dependencies = [
30     pyyaml
31   ];
33   pythonImportsCheck = [
34     "conda_inject"
35   ];
37   # no tests
38   doCheck = false;
40   meta = {
41     description = "Helper functions for injecting a conda environment into the current python environment";
42     homepage = "https://github.com/koesterlab/conda-inject";
43     changelog = "https://github.com/koesterlab/conda-inject/blob/${src.rev}/CHANGELOG.md";
44     license = lib.licenses.mit;
45     maintainers = with lib.maintainers; [ GaetanLepage ];
46   };