7 , pytest-error-for-skips
12 buildPythonPackage rec {
13 pname = "accuweather";
15 disabled = pythonOlder "3.6";
17 src = fetchFromGitHub {
21 sha256 = "sha256-fjOwa13hxY8/gCM6TCAFWVmEY1oZyqKyc6o3OSsxHpY=";
25 substituteInPlace setup.py \
26 --replace "pytest-runner" ""
27 substituteInPlace pytest.ini \
28 --replace "--cov --cov-report term-missing" ""
31 propagatedBuildInputs = [
38 pytest-error-for-skips
42 pythonImportsCheck = [ "accuweather" ];
45 description = "Python wrapper for getting weather data from AccuWeather servers";
46 homepage = "https://github.com/bieniu/accuweather";
47 license = licenses.asl20;
48 maintainers = with maintainers; [ jamiemagee ];