Merge pull request #108677 from fabaff/bump-pyairvisual

python3Packages.pyairvisual: 5.0.4 -> 5.0.5
This commit is contained in:
Martin Weinelt 2021-01-07 17:06:39 +01:00 committed by GitHub
commit 2b88da34e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyairvisual"; pname = "pyairvisual";
version = "5.0.4"; version = "5.0.5";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "bachya"; owner = "bachya";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "0z769xrb6w6bhqcq02sjryl1qyvk9dc1xfn06fc3mdqnrbr0xxj3"; sha256 = "0jjvng3py5g97gvx6rdbk5zxbn5rw8gq1ki4qi4vfsypchxbpz2q";
}; };
nativeBuildInputs = [ poetry ]; nativeBuildInputs = [ poetry ];
@ -43,13 +43,15 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
pytestFlagsArray = [ # Ignore the examples as they are prefixed with test_
"tests" pytestFlagsArray = [ "--ignore examples/" ];
]; pythonImportsCheck = [ "pyairvisual" ];
meta = with lib; { meta = with lib; {
description = "A simple, clean, well-tested Python library for interacting with AirVisual©"; description = "Python library for interacting with AirVisual";
license = licenses.mit;
homepage = "https://github.com/bachya/pyairvisual"; homepage = "https://github.com/bachya/pyairvisual";
changelog = "https://github.com/bachya/pyairvisual/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
}; };
} }