Unverified Commit 1ce8d998 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.ssdp: 1.3.0 -> 1.3.1 (#441112)

parents 9b754ced 0af0553e
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -13,16 +13,16 @@

buildPythonPackage rec {
  pname = "ssdp";
  version = "1.3.0";
  version = "1.3.1";
  pyproject = true;

  disabled = pythonOlder "3.8";
  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "codingjoe";
    repo = "ssdp";
    tag = version;
    hash = "sha256-mORjMEg7Q/2CKZBLICSGF8dcdl98S6mBgJ4jujPGs6M=";
    hash = "sha256-HsU67vsJvoVyOy2QEq8leYcjl1EVdQ039jN1QyL0XgU=";
  };

  build-system = [
@@ -48,7 +48,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python asyncio library for Simple Service Discovery Protocol (SSDP)";
    homepage = "https://github.com/codingjoe/ssdp";
    changelog = "https://github.com/codingjoe/ssdp/releases/tag/${version}";
    changelog = "https://github.com/codingjoe/ssdp/releases/tag/${src.tag}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
    mainProgram = "ssdp";