5e2a688410
GitOrigin-RevId: 5e2018f7b383aeca6824a30c0cd1978c9532a46a
33 lines
667 B
Nix
33 lines
667 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, prettytable
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "somecomfort";
|
|
version = "0.7.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "f201109104a61d05624022d3d0ebf23bf487570408517cac5f3f79dbde4b225d";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
prettytable
|
|
];
|
|
|
|
# tests require network access
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "somecomfort" ];
|
|
|
|
meta = with lib; {
|
|
description = "Client for Honeywell's US-based cloud devices";
|
|
homepage = "https://github.com/kk7ds/somecomfort";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|