Merge pull request #241745 from fabaff/iammeter
python310Packages.iammeter: init at 0.2.1
This commit is contained in:
commit
53f2c9f152
3 changed files with 36 additions and 1 deletions
32
pkgs/development/python-modules/iammeter/default.nix
Normal file
32
pkgs/development/python-modules/iammeter/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "iammeter";
|
||||
version = "0.2.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-Q0o392Xf3cY5BkX4ic6pE3XKMSgek5cpW4TMqSh+Ew8=";
|
||||
};
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"iammeter"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Module to work with the IamMeter API";
|
||||
homepage = "https://pypi.org/project/iammeter/";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -1778,7 +1778,8 @@
|
|||
pyialarm
|
||||
];
|
||||
"iammeter" = ps: with ps; [
|
||||
]; # missing inputs: iammeter
|
||||
iammeter
|
||||
];
|
||||
"iaqualink" = ps: with ps; [
|
||||
h2
|
||||
iaqualink
|
||||
|
|
|
@ -4853,6 +4853,8 @@ self: super: with self; {
|
|||
|
||||
i3-py = callPackage ../development/python-modules/i3-py { };
|
||||
|
||||
iammeter = callPackage ../development/python-modules/iammeter { };
|
||||
|
||||
iapws = callPackage ../development/python-modules/iapws { };
|
||||
|
||||
iaqualink = callPackage ../development/python-modules/iaqualink { };
|
||||
|
|
Loading…
Reference in a new issue