linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / dwdwfsapi / default.nix
blob6699050035d08cbd9a05bc9253dae522913e44d6
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 , ciso8601
6 }:
8 buildPythonPackage rec {
9   pname = "dwdwfsapi";
10   version = "1.0.3";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "sha256-PX1b1msaZH8HKVBo3GU7TOr8Lo7INLjjJBkDHHs6mzk=";
15   };
17   propagatedBuildInputs = [
18     requests
19     ciso8601
20   ];
22   # All tests require network access
23   doCheck = false;
25   pythonImportsCheck = [ "dwdwfsapi" ];
27   meta = with lib; {
28     description = "Python client to retrieve data provided by DWD via their geoserver WFS API";
29     homepage = "https://github.com/stephan192/dwdwfsapi";
30     license = with licenses; [ mit ];
31     maintainers = with maintainers; [ elohmeier ];
32   };