ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / aio-geojson-nsw-rfs-incidents / default.nix
blobc790188ea2699fa18b4edfb44440fa5bca00acf3
1 { lib
2 , aio-geojson-client
3 , aiohttp
4 , aresponses
5 , asynctest
6 , buildPythonPackage
7 , fetchFromGitHub
8 , pytest-asyncio
9 , pytestCheckHook
10 , pytz
11 , pythonOlder
14 buildPythonPackage rec {
15   pname = "aio-geojson-nsw-rfs-incidents";
16   version = "0.5";
17   format = "setuptools";
19   disabled = pythonOlder "3.7";
21   src = fetchFromGitHub {
22     owner = "exxamalte";
23     repo = "python-aio-geojson-nsw-rfs-incidents";
24     rev = "v${version}";
25     sha256 = "sha256-rWlt4MYnuY+CzszFVDniWBnqpQW3WldSEl00ns3ko3U=";
26   };
28   propagatedBuildInputs = [
29     aio-geojson-client
30     aiohttp
31     pytz
32   ];
34   checkInputs = [
35     aresponses
36     asynctest
37     pytest-asyncio
38     pytestCheckHook
39   ];
41   pythonImportsCheck = [
42     "aio_geojson_nsw_rfs_incidents"
43   ];
45   meta = with lib; {
46     description = "Python module for accessing the NSW Rural Fire Service incidents feeds";
47     homepage = "https://github.com/exxamalte/python-aio-geojson-nsw-rfs-incidents";
48     license = with licenses; [ asl20 ];
49     maintainers = with maintainers; [ fab ];
50   };