13 buildPythonPackage rec {
17 inherit pname version;
18 hash = "sha256-Tc+ksTpVaFxJ09F8EGMeyhjDN3D2Yxb47yM3uJUcwUQ=";
21 disabled = python.pythonOlder "3.4";
23 buildInputs = [ systemd ];
25 nativeBuildInputs = [ pkg-config ];
27 nativeCheckInputs = [ lxml mock psutil pytest ];
29 checkPhase = "pytest tests";
32 broken = (stdenv.isLinux && stdenv.isAarch64);
34 Thin Cython-based wrapper on top of libsystemd, focused on exposing the
35 dbus API via sd-bus in an automated and easy to consume way
37 homepage = "https://github.com/facebookincubator/pystemd/";
38 license = licenses.lgpl21Plus;
39 maintainers = with maintainers; [ flokli ];