diff options
Diffstat (limited to 'pkgs/development/python-modules/systemd/default.nix')
-rw-r--r-- | pkgs/development/python-modules/systemd/default.nix | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/systemd/default.nix b/pkgs/development/python-modules/systemd/default.nix index de195da11240..ebf70c9946cb 100644 --- a/pkgs/development/python-modules/systemd/default.nix +++ b/pkgs/development/python-modules/systemd/default.nix @@ -1,11 +1,12 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, libredirect -, systemd -, pkg-config -, pytest -, python +{ + lib, + buildPythonPackage, + fetchFromGitHub, + libredirect, + systemd, + pkg-config, + pytest, + python, }: buildPythonPackage rec { @@ -20,17 +21,11 @@ buildPythonPackage rec { hash = "sha256-8p4m4iM/z4o6PHRQIpuSXb64tPTWGlujEYCDVLiIt2o="; }; - nativeBuildInputs = [ - pkg-config - ]; + nativeBuildInputs = [ pkg-config ]; - buildInputs = [ - systemd - ]; + buildInputs = [ systemd ]; - nativeCheckInputs = [ - pytest - ]; + nativeCheckInputs = [ pytest ]; checkPhase = '' echo "12345678901234567890123456789012" > machine-id |