50 lines
944 B
Nix
50 lines
944 B
Nix
{ lib
|
|
, aiohttp
|
|
, asynctest
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, certifi
|
|
, pythonOlder
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "crownstone-cloud";
|
|
version = "1.4.9";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "crownstone";
|
|
repo = "crownstone-lib-python-cloud";
|
|
rev = version;
|
|
sha256 = "sha256-CS1zeQiWPnsGCWixCsN9sz08mPORW5sVqIpSFPh0Qt0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
asynctest
|
|
certifi
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
sed -i '/codecov/d' requirements.txt
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"crownstone_cloud"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python module for communicating with Crownstone Cloud and devices";
|
|
homepage = "https://github.com/crownstone/crownstone-lib-python-cloud";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|