Unverified Commit 2b2044fe authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #214703 from fabaff/wiffi-bump

python310Packages.wiffi: 1.1.0 -> 1.1.2
parents c74f9dd5 f6486cc9
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@

buildPythonPackage rec {
  pname = "wiffi";
  version = "1.1.0";
  version = "1.1.2";
  format = "setuptools";

  disabled = pythonOlder "3.6";
@@ -15,8 +15,8 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "mampfes";
    repo = "python-wiffi";
    rev = version;
    sha256 = "sha256-uB4M3etW1DCE//V2pcmsLZbORmrL00pbPADMQD5y3CY=";
    rev = "refs/tags/${version}";
    hash = "sha256-pnbzJxq8K947Yg54LysPPho6IRKf0cc+szTETgyzFao=";
  };

  propagatedBuildInputs = [
@@ -33,6 +33,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python module to interface with STALL WIFFI devices";
    homepage = "https://github.com/mampfes/python-wiffi";
    changelog = "https://github.com/mampfes/python-wiffi/blob/${version}/HISTORY.md";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };