ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / dwdwfsapi / default.nix
blobc32ebee5716b84156cf12e378f14868f8a418448
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 , ciso8601
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "dwdwfsapi";
11   version = "1.0.6";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-zeSV2acjtSWUYnrMjEBtrSPlXRvrNQRX5SYPYHnaOy0=";
19   };
21   propagatedBuildInputs = [
22     requests
23     ciso8601
24   ];
26   # All tests require network access
27   doCheck = false;
29   pythonImportsCheck = [
30     "dwdwfsapi"
31   ];
33   meta = with lib; {
34     description = "Python client to retrieve data provided by DWD via their geoserver WFS API";
35     homepage = "https://github.com/stephan192/dwdwfsapi";
36     license = with licenses; [ mit ];
37     maintainers = with maintainers; [ elohmeier ];
38   };