aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/interpreters/python/tests/test_nix_pythonprefix/default.nix
blob: 05798cbaf1b820f60c745133a899de498e7ece16 (plain)
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
{ interpreter, writeText, runCommandNoCC }:

let

  python = let
    packageOverrides = self: super: {
      typeddep = super.callPackage ./typeddep {};
    };
  in interpreter.override {inherit packageOverrides; self = python;};

  pythonEnv = python.withPackages(ps: [
    ps.typeddep
    ps.mypy
  ]);

  pythonScript = writeText "myscript.py" ''
    from typeddep import util
    s: str = util.echo("hello")
    print(s)
  '';

in runCommandNoCC "${interpreter.name}-site-prefix-mypy-test" {} ''
  ${pythonEnv}/bin/mypy ${pythonScript}
  touch $out
''