depot/third_party/nixpkgs/pkgs/development/python-modules/mesonpep517/default.nix
Default email ce641f4048 Project import generated by Copybara.
GitOrigin-RevId: bc5d68306b40b8522ffb69ba6cff91898c2fbbff
2021-12-06 17:07:01 +01:00

38 lines
938 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, meson
, ninja
, toml
}:
# TODO: offer meson as a Python package so we have dist-info folder.
buildPythonPackage rec {
pname = "mesonpep517";
version = "0.2";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Fyo7JfLqHJqbahEjVDt/0xJxOfVLqLn3xNJ4lSB7KIw=";
};
propagatedBuildInputs = [ toml ];
# postPatch = ''
# # Meson tries to detect ninja as well, so we should patch meson as well.
# substituteInPlace mesonpep517/buildapi.py \
# --replace "'meson'" "'${meson}/bin/meson'" \
# --replace "'ninja'" "'${ninja}/bin/ninja'"
# '';
propagatedNativeBuildInputs = [ meson ninja ];
meta = {
description = "Create pep517 compliant packages from the meson build system";
homepage = "https://gitlab.com/thiblahute/mesonpep517";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.fridh ];
};
}