Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / waqiasync / default.nix
blob8420ecbaef7fce426d30b91bc88c403570f56191
1 { lib
2 , aiohttp
3 , async-timeout
4 , buildPythonPackage
5 , fetchPypi
6 }:
8 buildPythonPackage rec {
9   pname = "waqiasync";
10   version = "1.1.0";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "sha256-SOs998BQV4UlLnRB3Yf7zze51u43g2Npwgk6y80S+m8=";
15   };
17   propagatedBuildInputs = [
18     aiohttp
19     async-timeout
20   ];
22   # Project has no tests
23   doCheck = false;
24   pythonImportsCheck = [ "waqiasync" ];
26   meta = with lib; {
27     description = "Python library for http://aqicn.org";
28     homepage = "https://github.com/andrey-git/waqi-async";
29     license = with licenses; [ mit ];
30     maintainers = with maintainers; [ fab ];
31   };