about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pystemd/default.nix
blob: 847679f2e996b322e82dd5129fc82404e4cfdb07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
  stdenv,
  buildPythonPackage,
  lib,
  fetchPypi,
  systemd,
  lxml,
  psutil,
  pytest,
  mock,
  pkg-config,
}:

buildPythonPackage rec {
  pname = "pystemd";
  version = "0.13.2";
  format = "setuptools";
  src = fetchPypi {
    inherit pname version;
    hash = "sha256-Tc+ksTpVaFxJ09F8EGMeyhjDN3D2Yxb47yM3uJUcwUQ=";
  };

  buildInputs = [ systemd ];

  nativeBuildInputs = [ pkg-config ];

  propagatedBuildInputs = [
    lxml
    psutil
  ];

  nativeCheckInputs = [
    mock
    pytest
  ];

  checkPhase = "pytest tests";

  meta = with lib; {
    description = ''
      Thin Cython-based wrapper on top of libsystemd, focused on exposing the
      dbus API via sd-bus in an automated and easy to consume way
    '';
    homepage = "https://github.com/facebookincubator/pystemd/";
    license = licenses.lgpl21Plus;
    maintainers = with maintainers; [ flokli ];
  };
}