summaryrefslogtreecommitdiff
path: root/python-package.nix
blob: deeb5940abc7a729eed6b809cb35921c0d060dc8 (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
{
  lib,
  buildPythonPackage,
  meson-python,
  ninja,
  pkg-config,
  makeWrapper,
  cjson,
  highs,
  uthash,
}:

buildPythonPackage {
  pname = "evanix";
  version = "0.0.1";
  pyproject = true;

  src =
    let
      fs = lib.fileset;
    in
    fs.toSource {
      root = ./.;
      fileset = fs.unions [
        ./src
        ./tests
        ./include
        ./meson.build
        ./meson_options.txt
        ./pyproject.toml
      ];
    };

  build-system = [ meson-python ];
  nativeBuildInputs = [
    ninja
    pkg-config
    makeWrapper
  ];
  buildInputs = [
    cjson
    highs
    uthash
  ];
}