python3Packages.wiffi: 1.0.1 -> 1.1.0

This commit is contained in:
Fabian Affolter 2021-11-26 20:22:10 +01:00
parent 9b6078a367
commit d07a9427f4

View file

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