blob: 2c566ac1fba50f76cab4912a4242028bfbfdd58d (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
pytestCheckHook,
pycparser,
psutil,
dotnet-sdk_6,
buildDotnetModule,
clr-loader,
setuptools,
}:
let
pname = "pythonnet";
version = "3.0.5";
src = fetchFromGitHub {
owner = "pythonnet";
repo = "pythonnet";
tag = "v${version}";
hash = "sha256-3LBrV/cQrXFKMFE1rCalDsPZ3rOY7RczqXoryMoVi14=";
};
# This buildDotnetModule is used only to get nuget sources, the actual
# build is done in `buildPythonPackage` below.
dotnet-build = buildDotnetModule {
inherit pname version src;
projectFile = "src/runtime/Python.Runtime.csproj";
testProjectFile = "src/testing/Python.Test.csproj";
nugetDeps = ./deps.json;
dotnet-sdk = dotnet-sdk_6;
};
in
buildPythonPackage {
inherit pname version src;
pyproject = true;
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'dynamic = ["version"]' 'version = "${version}"'
'';
buildInputs = dotnet-build.nugetDeps;
nativeBuildInputs = [
setuptools
dotnet-sdk_6
];
propagatedBuildInputs = [
pycparser
clr-loader
];
pytestFlags = [
# Run tests using .NET Core, Mono is unsupported for now due to find_library problem in clr-loader
"--runtime=coreclr"
];
nativeCheckInputs = [
pytestCheckHook
psutil # needed for memory leak tests
];
# Rerun this when updating to refresh Nuget dependencies
passthru.fetch-deps = dotnet-build.fetch-deps;
meta = {
description = ".NET integration for Python";
homepage = "https://pythonnet.github.io";
changelog = "https://github.com/pythonnet/pythonnet/releases/tag/${src.tag}";
license = lib.licenses.mit;
# <https://github.com/pythonnet/pythonnet/issues/898>
badPlatforms = [ "aarch64-linux" ];
maintainers = with lib.maintainers; [
jraygauthier
mdarocha
];
};
}
|