depot/third_party/nixpkgs/pkgs/development/python-modules/youless-api/default.nix

52 lines
846 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchFromBitbucket
, pythonOlder
, certifi
, chardet
, idna
, nose
, requests
, six
, urllib3
}:
buildPythonPackage rec {
pname = "youless-api";
version = "0.15";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromBitbucket {
owner = "jongsoftdev";
repo = "youless-python-bridge";
rev = version;
sha256 = "sha256-77uQUAPDCFQiCpNAI0feOtHq82sE0n70IV1Njn/W29M=";
};
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 ];
};
}