8 , pytest-error-for-skips
13 buildPythonPackage rec {
14 pname = "accuweather";
16 format = "setuptools";
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
24 hash = "sha256-NnDpSOEIqPuPLIr0Ty6yjrs9WRKyhykcdyiRPB/cHEw=";
28 substituteInPlace setup.py \
29 --replace "pytest-runner" ""
30 substituteInPlace setup.cfg \
31 --replace "--cov --cov-report term-missing" ""
34 propagatedBuildInputs = [
42 pytest-error-for-skips
46 pythonImportsCheck = [
51 description = "Python wrapper for getting weather data from AccuWeather servers";
52 homepage = "https://github.com/bieniu/accuweather";
53 license = licenses.asl20;
54 maintainers = with maintainers; [ jamiemagee ];