ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
36 lines
727 B
Nix
36 lines
727 B
Nix
{ lib
|
|
, fetchPypi
|
|
, python3Packages
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "acpic";
|
|
version = "1.0.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version pname;
|
|
hash = "sha256-vQ9VxCNbOmqHIY3e1wq1wNJl5ywfU2tm62gDg3vKvcg=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "pbr>=5.8.1,<6" "pbr"
|
|
'';
|
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
pbr
|
|
setuptools
|
|
];
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Daemon extending acpid event handling capabilities.";
|
|
mainProgram = "acpic";
|
|
homepage = "https://github.com/psliwka/acpic";
|
|
license = licenses.wtfpl;
|
|
maintainers = with maintainers; [ aacebedo ];
|
|
};
|
|
}
|