Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, georss-client 5, pytestCheckHook 6, pythonOlder 7}: 8 9buildPythonPackage rec { 10 pname = "georss-wa-dfes-client"; 11 version = "0.4"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; 15 16 src = fetchFromGitHub { 17 owner = "exxamalte"; 18 repo = "python-georss-wa-dfes-client"; 19 rev = "v${version}"; 20 hash = "sha256-s7qGTlWFdOtw0eMK7idld7HPOxO8CjODCmUi0WmRLdI="; 21 }; 22 23 propagatedBuildInputs = [ 24 georss-client 25 ]; 26 27 nativeCheckInputs = [ 28 pytestCheckHook 29 ]; 30 31 pythonImportsCheck = [ 32 "georss_wa_dfes_client" 33 ]; 34 35 meta = with lib; { 36 description = "Python library for accessing WA Department of Fire and Emergency Services (DFES) feed"; 37 homepage = "https://github.com/exxamalte/python-georss-wa-dfes-client"; 38 license = with licenses; [ asl20 ]; 39 maintainers = with maintainers; [ fab ]; 40 }; 41}