evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / iammeter / default.nix
blob4a9ba50b91ac2e2d3e3b5305c7ec7c5ba4226587
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6 }:
8 buildPythonPackage rec {
9   pname = "iammeter";
10   version = "0.2.1";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-Q0o392Xf3cY5BkX4ic6pE3XKMSgek5cpW4TMqSh+Ew8=";
18   };
20   # Module has no tests
21   doCheck = false;
23   pythonImportsCheck = [ "iammeter" ];
25   meta = with lib; {
26     description = "Module to work with the IamMeter API";
27     homepage = "https://pypi.org/project/iammeter/";
28     license = with licenses; [ mit ];
29     maintainers = with maintainers; [ fab ];
30   };