2021-01-25 00:26:54 -08:00
|
|
|
{ lib, python, systemd }:
|
2018-09-29 12:25:08 -07:00
|
|
|
|
2019-05-02 02:27:13 -07:00
|
|
|
python.pkgs.buildPythonPackage rec {
|
2018-09-29 12:25:08 -07:00
|
|
|
pname = "pystemd";
|
2020-10-10 10:03:23 -07:00
|
|
|
version = "0.8.0";
|
2019-05-02 02:27:13 -07:00
|
|
|
src = python.pkgs.fetchPypi {
|
2018-09-29 12:25:08 -07:00
|
|
|
inherit pname version;
|
2020-10-10 10:03:23 -07:00
|
|
|
sha256 = "0wlrid2xd73dmzl4m0jgg6cqmkx3qs9v9nikvwxd8a5b8chf9hna";
|
2018-09-29 12:25:08 -07:00
|
|
|
};
|
|
|
|
|
2020-10-10 10:03:23 -07:00
|
|
|
disabled = python.pythonOlder "3.4";
|
2019-05-02 02:27:13 -07:00
|
|
|
|
2018-09-29 12:25:08 -07:00
|
|
|
buildInputs = [ systemd ];
|
|
|
|
|
2019-05-02 02:27:13 -07:00
|
|
|
checkInputs = with python.pkgs; [ pytest mock ];
|
2018-09-29 12:25:08 -07:00
|
|
|
checkPhase = "pytest tests";
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-09-29 12:25:08 -07:00
|
|
|
description = "A 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.";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/facebookincubator/pystemd/";
|
2019-05-02 02:27:13 -07:00
|
|
|
license = licenses.lgpl21Plus;
|
2018-09-29 12:25:08 -07:00
|
|
|
maintainers = with maintainers; [ flokli ];
|
|
|
|
};
|
|
|
|
}
|