File: control

package info (click to toggle)
python-first 2.0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 124 kB
  • sloc: python: 90; sh: 12; makefile: 7
file content (24 lines) | stat: -rw-r--r-- 940 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Source: python-first
Section: python
Priority: optional
Maintainer: Debian QA Group <packages@qa.debian.org>
Build-Depends: debhelper-compat (= 13),
               dh-python,
               dpkg-dev (>= 1.16.1~),
               python3-all,
               python3-setuptools,
Standards-Version: 4.7.0
Homepage: https://github.com/hynek/first/
Vcs-Browser: https://salsa.debian.org/debian/python-first
Vcs-Git: https://salsa.debian.org/debian/python-first.git

Package: python3-first
Architecture: all
Depends: ${misc:Depends},
         ${python3:Depends},
Description: simple function that returns the first true value from an iterable
 A MIT licensed Python package with a simple function that returns the
 first true value from an iterable, or None if there is none. If you need
 more power, you can also supply a key function that is used to judge the
 truth value of the element or a default value if None doesn’t fit your
 use case.