tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python311Packages.mesonpep517: modernize
Peder Bergebakken Sundt
2 years ago
b4ee2e7b
cef790b5
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
mesonpep517
default.nix
+4
-4
pkgs/development/python-modules/mesonpep517/default.nix
···
14
14
buildPythonPackage rec {
15
15
pname = "mesonpep517";
16
16
version = "0.2";
17
17
-
format = "pyproject";
17
17
+
pyproject = true;
18
18
19
19
src = fetchPypi {
20
20
inherit pname version;
···
26
26
#
27
27
postPatch = ''
28
28
substituteInPlace pyproject.toml \
29
29
-
--replace 'backend-path = "."' 'backend-path = ["."]'
29
29
+
--replace-fail 'backend-path = "."' 'backend-path = ["."]'
30
30
'';
31
31
32
32
-
nativeBuildInputs = [
32
32
+
build-system = [
33
33
setuptools
34
34
wheel
35
35
];
36
36
37
37
-
propagatedBuildInputs = [ toml ];
37
37
+
dependencies = [ toml ];
38
38
39
39
propagatedNativeBuildInputs = [
40
40
meson