Unverified Commit 769697fd authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.aiobafi6: 0.9.0 -> 0.10.0 (#422283)

parents b15d6c9e a2ad08a3
Loading
Loading
Loading
Loading
+7 −10
Original line number Diff line number Diff line
@@ -6,27 +6,24 @@
  protobuf,
  pytest-asyncio,
  pytestCheckHook,
  pythonOlder,
  zeroconf,
}:

buildPythonPackage rec {
  pname = "aiobafi6";
  version = "0.9.0";
  format = "pyproject";

  disabled = pythonOlder "3.10";
  version = "0.10.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "jfroy";
    repo = "aiobafi6";
    tag = version;
    hash = "sha256-QxjrspvNrcMcGChjj1B4QF/SnWCsGmPxnI2bWAL6BiI=";
    hash = "sha256-7NIpIRVs6PFPByrGfVDA6P7JTvXGrzbH/lOPdPfZH04=";
  };

  nativeBuildInputs = [ poetry-core ];
  build-system = [ poetry-core ];

  propagatedBuildInputs = [
  dependencies = [
    protobuf
    zeroconf
  ];
@@ -40,10 +37,10 @@ buildPythonPackage rec {

  meta = with lib; {
    description = "Library for communication with the Big Ass Fans i6 firmware";
    mainProgram = "aiobafi6";
    homepage = "https://github.com/jfroy/aiobafi6";
    changelog = "https://github.com/jfroy/aiobafi6/releases/tag/0.8.2";
    changelog = "https://github.com/jfroy/aiobafi6/releases/tag/${src.tag}";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
    mainProgram = "aiobafi6";
  };
}