From b85f7ca96fe53c35c8f6774a16d3d820223d5c6d Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Wed, 26 Nov 2025 09:47:03 +0100 Subject: [PATCH] gnu: Remove python-scandir. * gnu/packages/python-xyz.scm (python-scandir): Delete variable. Fixes: guix/guix#3844 Change-Id: I07486a29e949e4ffeca4be84ce3298796f1b84e8 --- gnu/packages/python-xyz.scm | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a5bbc345c2e99dde8f36cee3913f00d1c3b8b3b7..ad315c710c5ac088fc7fa30ee6271a5fe316b67e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -24662,34 +24662,6 @@ parts of the lines that were modified.") It supports both normal and Unicode strings.") (license license:gpl2+))) -(define-public python-scandir - (package - (name "python-scandir") - (version "1.10.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "scandir" version)) - (sha256 - (base32 "1bkqwmf056pkchf05ywbnf659wqlp6lljcdb0y88wr9f0vv32ijd")))) - (build-system python-build-system) - (arguments - `(#:phases (modify-phases %standard-phases - (replace 'check - (lambda _ - (invoke "python" "test/run_tests.py")))))) - (home-page "https://github.com/benhoyt/scandir") - (synopsis "Directory iteration function") - (description - "Directory iteration function like os.listdir(), except that instead of - returning a list of bare filenames, it yields DirEntry objects that include - file type and stat information along with the name. Using scandir() increases - the speed of os.walk() by 2-20 times (depending on the platform and file - system) by avoiding unnecessary calls to os.stat() in most cases. - - This package is part of the Python standard library since version 3.5.") - (license license:bsd-3))) - (define-public python-factory-boy (package (name "python-factory-boy")