Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pystemd / default.nix
blobe77dd605388a9cebcfeb330cc28b466f41095e0c
1 { lib, python, systemd }:
3 python.pkgs.buildPythonPackage rec {
4   pname = "pystemd";
5   version = "0.8.0";
6   src = python.pkgs.fetchPypi {
7     inherit pname version;
8     sha256 = "0wlrid2xd73dmzl4m0jgg6cqmkx3qs9v9nikvwxd8a5b8chf9hna";
9   };
11   disabled = python.pythonOlder "3.4";
13   buildInputs = [ systemd ];
15   checkInputs = with python.pkgs; [ pytest mock ];
16   checkPhase = "pytest tests";
18   meta = with lib; {
19     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.";
20     homepage = "https://github.com/facebookincubator/pystemd/";
21     license = licenses.lgpl21Plus;
22     maintainers = with maintainers; [ flokli ];
23   };