mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
Merge pull request #276529 from LibreCybernetics/staging-next-libei
[staging-next] libei: fix build, changing: python3Packages → python3.withPackages, attr → attrs
This commit is contained in:
commit
bcfe2bafda
@ -11,7 +11,6 @@
|
||||
, protobuf
|
||||
, protobufc
|
||||
, python3
|
||||
, python3Packages
|
||||
, systemd
|
||||
}:
|
||||
let
|
||||
@ -42,19 +41,18 @@ stdenv.mkDerivation rec {
|
||||
systemd
|
||||
];
|
||||
nativeBuildInputs = [
|
||||
attr
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
python3
|
||||
] ++
|
||||
(with python3Packages; [
|
||||
jinja2
|
||||
pytest
|
||||
python-dbusmock
|
||||
strenum
|
||||
structlog
|
||||
]);
|
||||
(python3.withPackages(ps: with ps; [
|
||||
attrs
|
||||
jinja2
|
||||
pytest
|
||||
python-dbusmock
|
||||
strenum
|
||||
structlog
|
||||
]))
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
ln -s "${munit}" ./subprojects/munit
|
||||
|
Loading…
Reference in New Issue
Block a user