depot/third_party/nixpkgs/pkgs/development/python-modules/youless-api/default.nix
Default email 556d6f0562 Project import generated by Copybara.
GitOrigin-RevId: e4ef597edfd8a0ba5f12362932fc9b1dd01a0aef
2021-10-11 18:52:03 +02:00

48 lines
815 B
Nix

{ lib
, buildPythonPackage
, fetchFromBitbucket
, pythonOlder
, certifi
, chardet
, idna
, nose
, requests
, six
, urllib3
}:
buildPythonPackage rec {
pname = "youless-api";
version = "0.14";
disabled = pythonOlder "3.7";
src = fetchFromBitbucket {
owner = "jongsoftdev";
repo = "youless-python-bridge";
rev = version;
sha256 = "sha256-ZHDQ+4Urv0ZxKFASsgDG12mpfRiCN2DwU6Rgc9ye5qY=";
};
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 ];
};
}