python.pkgs.systemd: 233 -> 234

also python library does not match with our systemd version, the
changes done in this release are systemd 233 and python 3.6 related.
This commit is contained in:
Jörg Thalheim
2017-06-05 15:53:12 +01:00
parent 7c476b98df
commit 6b89277fed
2 changed files with 26 additions and 19 deletions

View File

@@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, systemd, pkgconfig }:
buildPythonPackage rec {
name = "python-systemd-${version}";
version = "234";
src = fetchFromGitHub {
owner = "systemd";
repo = "python-systemd";
rev = "v${version}";
sha256 = "1fakw7qln44mfd6pj4kqsgyrhkc6cyr653id34kv0rdnb1bvysrz";
};
buildInputs = [ systemd ];
nativeBuildInputs = [ pkgconfig ];
doCheck = false;
meta = with stdenv.licenses; {
description = "Python module for native access to the systemd facilities";
homepage = http://www.freedesktop.org/software/systemd/python-systemd/;
license = licenses.lgpl21;
};
}