ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / asmog / default.nix
bloba1d8c340ba6893a5fffadef21bfc0c13abf5a715
1 { lib
2 , aiohttp
3 , async-timeout
4 , buildPythonPackage
5 , fetchPypi
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "asmog";
11   version = "0.0.6";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "14b8hdxcks6qyrqpp4mm77fvzznbskqn7fw9qgwgcqx81pg45iwk";
19   };
21   propagatedBuildInputs = [
22     aiohttp
23     async-timeout
24   ];
26   # Project doesn't ship the tests
27   # https://github.com/kstaniek/python-ampio-smog-api/issues/2
28   doCheck = false;
30   pythonImportsCheck = [ "asmog" ];
32   meta = with lib; {
33     description = "Python module for Ampio Smog Sensors";
34     homepage = "https://github.com/kstaniek/python-ampio-smog-api";
35     license = with licenses; [ asl20 ];
36     maintainers = with maintainers; [ fab ];
37   };