Files
nixpkgs/pkgs/development/python-modules/iammeter/default.nix
2026-07-15 14:04:39 -04:00

29 lines
555 B
Nix

{
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 = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}