mitmdump: use systemd-python after systemd got deprecated
This commit is contained in:
parent
6ebd3204c9
commit
f39f0bd9bf
2 changed files with 2 additions and 2 deletions
|
|
@ -29,7 +29,7 @@ let
|
||||||
p = pkgs.python3Packages;
|
p = pkgs.python3Packages;
|
||||||
in
|
in
|
||||||
[
|
[
|
||||||
p.systemd
|
p.systemd-python
|
||||||
p.mitmproxy
|
p.mitmproxy
|
||||||
];
|
];
|
||||||
flakeIgnore = [ "E501" ];
|
flakeIgnore = [ "E501" ];
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ let
|
||||||
lib.getExe (
|
lib.getExe (
|
||||||
pkgs.writers.writePython3Bin "serve"
|
pkgs.writers.writePython3Bin "serve"
|
||||||
{
|
{
|
||||||
libraries = [ pkgs.python3Packages.systemd ];
|
libraries = [ pkgs.python3Packages.systemd-python ];
|
||||||
}
|
}
|
||||||
(
|
(
|
||||||
let
|
let
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue