4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
25 lines
732 B
Nix
25 lines
732 B
Nix
{ lib, stdenv, python, systemd }:
|
|
|
|
python.pkgs.buildPythonPackage rec {
|
|
pname = "pystemd";
|
|
version = "0.8.0";
|
|
src = python.pkgs.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0wlrid2xd73dmzl4m0jgg6cqmkx3qs9v9nikvwxd8a5b8chf9hna";
|
|
};
|
|
|
|
disabled = python.pythonOlder "3.4";
|
|
|
|
buildInputs = [ systemd ];
|
|
|
|
checkInputs = with python.pkgs; [ pytest mock ];
|
|
checkPhase = "pytest tests";
|
|
|
|
meta = with 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.lgpl21Plus;
|
|
maintainers = with maintainers; [ flokli ];
|
|
};
|
|
}
|