From 9e16658e3039efed7373bbdcd95dc5c3e1598977 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 23 Apr 2023 12:52:21 +0200 Subject: python310Packages.ssdp: update build requirements --- pkgs/development/python-modules/ssdp/default.nix | 30 ++++++++++++------------ 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/pkgs/development/python-modules/ssdp/default.nix b/pkgs/development/python-modules/ssdp/default.nix index d2db80dbd383e..9a68f24a04402 100644 --- a/pkgs/development/python-modules/ssdp/default.nix +++ b/pkgs/development/python-modules/ssdp/default.nix @@ -1,17 +1,18 @@ { lib , buildPythonPackage , fetchFromGitHub -, pbr +, flit-core +, flit-scm , pytestCheckHook , pythonOlder -, setuptools-scm }: buildPythonPackage rec { pname = "ssdp"; version = "1.1.1"; + format = "pyproject"; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "codingjoe"; @@ -22,29 +23,28 @@ buildPythonPackage rec { SETUPTOOLS_SCM_PRETEND_VERSION = version; - nativeBuildInputs = [ - setuptools-scm - ]; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace "--cov" "" + ''; - buildInputs = [ - pbr + nativeBuildInputs = [ + flit-core + flit-scm ]; nativeCheckInputs = [ pytestCheckHook ]; - postPatch = '' - substituteInPlace setup.cfg \ - --replace "pytest-runner" "" \ - --replace "--cov=ssdp" "" - ''; - - pythonImportsCheck = [ "ssdp" ]; + pythonImportsCheck = [ + "ssdp" + ]; 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}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; -- cgit 1.4.1