587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
49 lines
841 B
Nix
49 lines
841 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromBitbucket
|
|
, pythonOlder
|
|
, certifi
|
|
, chardet
|
|
, idna
|
|
, pynose
|
|
, requests
|
|
, urllib3
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "youless-api";
|
|
version = "1.0.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromBitbucket {
|
|
owner = "jongsoftdev";
|
|
repo = "youless-python-bridge";
|
|
rev = version;
|
|
hash = "sha256-49/HmkGr87aDhr8GEtARpXvr2RcgmLdAqhvMLI5x+vQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
certifi
|
|
chardet
|
|
idna
|
|
requests
|
|
urllib3
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pynose
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"youless_api"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for YouLess sensors";
|
|
homepage = "https://pypi.org/project/youless-api/";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|