From e60b6bce975671546981630c11dfe908bc6fdfec Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Sun, 5 Jul 2026 23:57:48 +0200 Subject: [PATCH] python3Packages.socialscan: migrate to pyproject --- pkgs/development/python-modules/socialscan/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/socialscan/default.nix b/pkgs/development/python-modules/socialscan/default.nix index c97677dba1bc..332f648317c4 100644 --- a/pkgs/development/python-modules/socialscan/default.nix +++ b/pkgs/development/python-modules/socialscan/default.nix @@ -4,13 +4,14 @@ buildPythonPackage, fetchFromGitHub, colorama, + setuptools, tqdm, }: buildPythonPackage rec { pname = "socialscan"; version = "2.0.1"; - format = "setuptools"; + pyproject = true; src = fetchFromGitHub { owner = "iojw"; @@ -19,7 +20,9 @@ buildPythonPackage rec { hash = "sha256-4JJVhB6x1NGagtfzE03Jae2GOr25hh+4l7gQ23zc7Ck="; }; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ aiohttp colorama tqdm