2018-09-29 20:25:08 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, mock, pytest, six, systemd }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pystemd";
|
2019-05-02 09:58:19 +01:00
|
|
|
version = "0.6.0";
|
2018-09-29 20:25:08 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-02 09:58:19 +01:00
|
|
|
sha256 = "054a3ni71paqa1xa786840z3kjixcgyqdbscyq8nfxp3hwn0gz5i";
|
2018-09-29 20:25:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ systemd ];
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
|
|
|
checkInputs = [ pytest mock ];
|
|
|
|
checkPhase = "pytest tests";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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.";
|
|
|
|
homepage = https://github.com/facebookincubator/pystemd/;
|
|
|
|
license = licenses.bsd0;
|
|
|
|
maintainers = with maintainers; [ flokli ];
|
|
|
|
};
|
|
|
|
}
|