nixpkgs/pkgs/development/python-modules/batinfo/default.nix
Fabian Affolter 6268a5fdf2 python312Packages.batinfo: refactor
- enable tests
- add pythonImportsCheck
2024-04-12 13:04:05 +02:00

55 lines
1.0 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "batinfo";
version = "0.4.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "nicolargo";
repo = "batinfo";
rev = "refs/tags/v${version}";
hash = "sha256-GgAJJA8bzQJLAU+nxmkDa5LFTHc4NGi+nj9PfKyw8/M=";
};
postPatch = ''
substituteInPlace test_batinfo.py \
--replace-fail "self.assertEquals" "self.assertEqual"
'';
build-system = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"batinfo"
];
disabledTests = [
# Tests are a bit outdated
"test_batinfo_capacity"
"test_batinfo_charge_now"
"test_batinfo_name_default"
];
meta = with lib; {
description = "Module to retrieve battery information";
homepage = "https://github.com/nicolargo/batinfo";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ koral ];
platforms = platforms.linux;
};
}