mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
37 lines
854 B
Nix
37 lines
854 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "apcaccess";
|
|
version = "0.0.13";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "flyte";
|
|
repo = "apcaccess";
|
|
rev = version;
|
|
hash = "sha256-XLoNRh6MgXCfRtWD9NpVZSyroW6E9nRYw6Grxa+AQkc=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "setup_requires='pytest-runner'," ""
|
|
'';
|
|
|
|
pythonImportsCheck = [ "apcaccess" ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
description = "Library offers programmatic access to the status information provided by apcupsd over its Network Information Server";
|
|
mainProgram = "apcaccess";
|
|
homepage = "https://github.com/flyte/apcaccess";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ uvnikita ];
|
|
};
|
|
}
|