nixpkgs/pkgs/development/python-modules/airly/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

47 lines
887 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}";
hash = "sha256-weliT/FYnRX+pzVAyRWFly7lfj2z7P+hpq5SIhyIgmI=";
};
propagatedBuildInputs = [ aiohttp ];
nativeCheckInputs = [
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 ];
};
}