nixpkgs/pkgs/development/python-modules/pkgconfig/default.nix
Michael Daniels 075e8c2c4f
treewide: change 'format = "pyproject";' to 'pyproject = true;'
This is almost all find-and-replace.

I manually edited:
* pkgs/development/python-modules/notifications-android-tv/default.nix,
* pkgs/servers/home-assistant/default.nix,
* pkgs/development/tools/continuous-integration/buildbot/master.nix

A few files have not been changed in this PR because they would cause rebuilds.

This PR should have 0 rebuilds.
2026-01-12 17:50:35 -05:00

56 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
poetry-core,
pkg-config,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pkgconfig";
version = "1.5.5";
pyproject = true;
inherit (pkg-config)
setupHooks
wrapperName
suffixSalt
targetPrefix
baseBinName
;
src = fetchFromGitHub {
owner = "matze";
repo = "pkgconfig";
rev = "v${version}";
hash = "sha256-uuLUGRNLCR3NS9g6OPCI+qG7tPWsLhI3OE5WmSI3vm8=";
};
postPatch = ''
substituteInPlace pkgconfig/pkgconfig.py \
--replace "pkg_config_exe = os.environ.get('PKG_CONFIG', None) or 'pkg-config'" "pkg_config_exe = '${pkg-config}/bin/${pkg-config.targetPrefix}pkg-config'"
# those pc files are missing and pkg-config validates that they exist
substituteInPlace data/fake-openssl.pc \
--replace "Requires: libssl libcrypto" ""
'';
nativeBuildInputs = [ poetry-core ];
# ModuleNotFoundError: No module named 'distutils'
# https://github.com/matze/pkgconfig/issues/64
doCheck = pythonOlder "3.12";
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pkgconfig" ];
meta = {
description = "Interface Python with pkg-config";
homepage = "https://github.com/matze/pkgconfig";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ nickcao ];
};
}