Merge pull request #147523 from fabaff/bump-wiffi

python3Packages.wiffi: 1.0.1 -> 1.1.0
This commit is contained in:
Fabian Affolter 2021-11-26 23:08:00 +01:00 committed by GitHub
commit 3739e906ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,21 +7,28 @@
buildPythonPackage rec {
pname = "wiffi";
version = "1.0.1";
version = "1.1.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "mampfes";
repo = "python-wiffi";
rev = version;
sha256 = "1bsx8dcmbkajh7hdgxg6wdnyxz4bfnd45piiy3yzyvszfdyvxw0f";
sha256 = "sha256-uB4M3etW1DCE//V2pcmsLZbORmrL00pbPADMQD5y3CY=";
};
propagatedBuildInputs = [ aiohttp ];
propagatedBuildInputs = [
aiohttp
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "wiffi" ];
pythonImportsCheck = [
"wiffi"
];
meta = with lib; {
description = "Python module to interface with STALL WIFFI devices";