16 buildPythonPackage rec {
17 pname = "pyairvisual";
21 disabled = pythonOlder "3.6";
23 src = fetchFromGitHub {
27 sha256 = "sha256-r/AJl36dv6+C92tc3kpX4/VzG69qdh4ERCyQxDOHdVU=";
30 nativeBuildInputs = [ poetry-core ];
32 propagatedBuildInputs = [
46 # Ignore the examples as they are prefixed with test_
47 pytestFlagsArray = [ "--ignore examples/" ];
48 pythonImportsCheck = [ "pyairvisual" ];
51 description = "Python library for interacting with AirVisual";
52 homepage = "https://github.com/bachya/pyairvisual";
53 changelog = "https://github.com/bachya/pyairvisual/releases/tag/${version}";
54 license = with licenses; [ mit ];
55 maintainers = with maintainers; [ fab ];