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