blob: 77117cfb229b184aa416c753e85f59e8522d4ea7 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{
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 ];
};
}
|