blob: 2942fc33214d8fe29e09ac472c06af00355c99b8 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "iammeter";
version = "0.2.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-Q0o392Xf3cY5BkX4ic6pE3XKMSgek5cpW4TMqSh+Ew8=";
};
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "iammeter" ];
meta = {
description = "Module to work with the IamMeter API";
homepage = "https://pypi.org/project/iammeter/";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|