forked from mirrors/nixpkgs
47 lines
883 B
Nix
47 lines
883 B
Nix
{ lib
|
|
, aiohttp
|
|
, aioresponses
|
|
, aiounittest
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "airly";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ak-ambi";
|
|
repo = "python-airly";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-weliT/FYnRX+pzVAyRWFly7lfj2z7P+hpq5SIhyIgmI=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ aiohttp ];
|
|
|
|
checkInputs = [
|
|
aioresponses
|
|
aiounittest
|
|
pytestCheckHook
|
|
];
|
|
|
|
preCheck = ''
|
|
cd tests
|
|
'';
|
|
|
|
disabledTests = [
|
|
"InstallationsLoaderTestCase"
|
|
"MeasurementsSessionTestCase"
|
|
];
|
|
|
|
pythonImportsCheck = [ "airly" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python module for getting air quality data from Airly sensors";
|
|
homepage = "https://github.com/ak-ambi/python-airly";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|