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

authored by Fabian Affolter and committed by GitHub 1ce8d998 9b754ced

+4 -4
+4 -4
pkgs/development/python-modules/ssdp/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "ssdp"; 16 - version = "1.3.0"; 16 + version = "1.3.1"; 17 17 pyproject = true; 18 18 19 - disabled = pythonOlder "3.8"; 19 + disabled = pythonOlder "3.9"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "codingjoe"; 23 23 repo = "ssdp"; 24 24 tag = version; 25 - hash = "sha256-mORjMEg7Q/2CKZBLICSGF8dcdl98S6mBgJ4jujPGs6M="; 25 + hash = "sha256-HsU67vsJvoVyOy2QEq8leYcjl1EVdQ039jN1QyL0XgU="; 26 26 }; 27 27 28 28 build-system = [ ··· 48 48 meta = with lib; { 49 49 description = "Python asyncio library for Simple Service Discovery Protocol (SSDP)"; 50 50 homepage = "https://github.com/codingjoe/ssdp"; 51 - changelog = "https://github.com/codingjoe/ssdp/releases/tag/${version}"; 51 + changelog = "https://github.com/codingjoe/ssdp/releases/tag/${src.tag}"; 52 52 license = licenses.mit; 53 53 maintainers = with maintainers; [ fab ]; 54 54 mainProgram = "ssdp";