nixpkgs/pkgs/by-name/ac/acpic/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
731 B
Nix
Raw Normal View History

2023-07-29 10:16:43 +00:00
{
lib,
fetchPypi,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "acpic";
version = "1.0.0";
pyproject = true;
2023-07-29 10:16:43 +00:00
src = fetchPypi {
inherit version pname;
hash = "sha256-vQ9VxCNbOmqHIY3e1wq1wNJl5ywfU2tm62gDg3vKvcg=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "pbr>=5.8.1,<6" "pbr"
'';
nativeBuildInputs = with python3Packages; [
pbr
setuptools
2023-07-29 10:16:43 +00:00
];
# no tests
doCheck = false;
meta = with lib; {
description = "Daemon extending acpid event handling capabilities";
mainProgram = "acpic";
2023-07-29 10:16:43 +00:00
homepage = "https://github.com/psliwka/acpic";
license = licenses.wtfpl;
maintainers = with maintainers; [ aacebedo ];
};
}