51 lines
846 B
Nix
51 lines
846 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromBitbucket
|
|
, pythonOlder
|
|
, certifi
|
|
, chardet
|
|
, idna
|
|
, nose
|
|
, requests
|
|
, six
|
|
, urllib3
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "youless-api";
|
|
version = "0.16";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromBitbucket {
|
|
owner = "jongsoftdev";
|
|
repo = "youless-python-bridge";
|
|
rev = version;
|
|
sha256 = "sha256-8pJeb3eWchMRrk8KLSI/EbHs1wQDqBoqlAQXm9ulyqs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
certifi
|
|
chardet
|
|
idna
|
|
requests
|
|
six
|
|
urllib3
|
|
];
|
|
|
|
checkInputs = [
|
|
nose
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|