summary refs log tree commit diff
path: root/pkgs/development/tools/poetry2nix/poetry2nix/pkgs/poetry/default.nix
blob: b0423a98f9ecb058b6ff942b5f5724793422b43a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{ lib
, poetry2nix
, python
, fetchFromGitHub
, projectDir ? ./.
, pyproject ? projectDir + "/pyproject.toml"
, poetrylock ? projectDir + "/poetry.lock"
}:


poetry2nix.mkPoetryApplication {

  inherit python;

  inherit projectDir pyproject poetrylock;

  src = fetchFromGitHub (lib.importJSON ./src.json);

  # "Vendor" dependencies (for build-system support)
  postPatch = ''
    # Figure out the location of poetry.core
    # As poetry.core is using the same root import name as the poetry package and the python module system wont look for the root
    # in the separate second location we need to link poetry.core to poetry
    POETRY_CORE=$(python -c 'import poetry.core; import os.path; print(os.path.dirname(poetry.core.__file__))')

    echo "import sys" >> src/poetry/__init__.py
    for path in $propagatedBuildInputs; do
        echo "sys.path.insert(0, \"$path\")" >> src/poetry/__init__.py
    done
  '';

  postInstall = ''
    ln -s $POETRY_CORE $out/${python.sitePackages}/poetry/core

    mkdir -p "$out/share/bash-completion/completions"
    "$out/bin/poetry" completions bash > "$out/share/bash-completion/completions/poetry"
    mkdir -p "$out/share/zsh/site-functions"
    "$out/bin/poetry" completions zsh > "$out/share/zsh/site-functions/_poetry"
    mkdir -p "$out/share/fish/vendor_completions.d"
    "$out/bin/poetry" completions fish > "$out/share/fish/vendor_completions.d/poetry.fish"
  '';

  # Propagating dependencies leads to issues downstream
  # We've already patched poetry to prefer "vendored" dependencies
  postFixup = ''
    rm $out/nix-support/propagated-build-inputs
  '';

  # Fails because of impurities (network, git etc etc)
  doCheck = false;

  overrides = [
    poetry2nix.defaultPoetryOverrides
    (self: super: {
      cryptography = super.cryptography.overridePythonAttrs (old: {
        meta = old.meta // {
          knownVulnerabilities = old.meta.knownVulnerabilities or [ ]
            ++ lib.optionals (lib.versionOlder old.version "41.0.0") [
              "CVE-2023-2650"
              "CVE-2023-2975"
              "CVE-2023-3446"
              "CVE-2023-3817"
              "CVE-2023-38325"
            ];
        };
      });
      requests = super.requests.overridePythonAttrs (old: {
        meta = old.meta // {
          knownVulnerabilities = old.meta.knownVulnerabilities or [ ]
          ++ lib.optionals (lib.versionOlder old.version "2.31.0") [
            "CVE-2023-32681"
          ];
        };
      });
    })
  ];

  meta = with lib; {
    inherit (python.meta) platforms;
    maintainers = with maintainers; [ adisbladis jakewaksbaum ];
  };
}