diff options
| author | Andreas Enge <andreas@enge.fr> | 2025-11-26 09:47:03 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-11-26 09:47:07 +0100 |
| commit | b85f7ca96fe53c35c8f6774a16d3d820223d5c6d (patch) | |
| tree | e61268f0979c013d8d51c91c4aaa39ce5d2fd24c /gnu | |
| parent | f3da664694c21f4f04e2fc81420b4ed7d0f49c83 (diff) | |
gnu: Remove python-scandir.
* gnu/packages/python-xyz.scm (python-scandir): Delete variable.
Fixes: guix/guix#3844
Change-Id: I07486a29e949e4ffeca4be84ce3298796f1b84e8
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a5bbc345c2e..ad315c710c5 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") |
