blob: 4a1d170ca83969fabcf3f68b53148b6276f3c7cf (
plain) (
tree)
|
|
{
lib,
buildPythonPackage,
meson-python,
ninja,
pkg-config,
makeWrapper,
cjson,
highs,
uthash,
sqlite,
}:
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
sqlite
];
}
|