blob: 475ba6ac9510ea80edcf8be584e403c453754b79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "batinfo";
version = "0.4.2";
pyproject = true;
src = fetchFromGitHub {
owner = "nicolargo";
repo = "batinfo";
tag = "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 = {
description = "Module to retrieve battery information";
homepage = "https://github.com/nicolargo/batinfo";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ koral ];
platforms = lib.platforms.linux;
};
}
|