mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
25 lines
624 B
Nix
25 lines
624 B
Nix
{ stdenv, buildPythonPackage, fetchFromGitHub, systemd, pkgconfig }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "systemd";
|
|
version = "234";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "systemd";
|
|
repo = "python-systemd";
|
|
rev = "v${version}";
|
|
sha256 = "1fakw7qln44mfd6pj4kqsgyrhkc6cyr653id34kv0rdnb1bvysrz";
|
|
};
|
|
|
|
buildInputs = [ systemd ];
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Python module for native access to the systemd facilities";
|
|
homepage = "http://www.freedesktop.org/software/systemd/python-systemd/";
|
|
license = licenses.lgpl21;
|
|
};
|
|
}
|