_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/
python2-typing 3.10.0.0
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://docs.python.org/3/library/typing.html
Licenses: Python Software Foundation License
Synopsis: Type hints for Python
Description:

This is a backport of the standard library typing module to Python versions older than 3.5. Typing defines a standard notation for Python function and variable type annotations. The notation can be used for documenting code in a concise, standard format, and it has been designed to also be used by static and runtime type checkers, static analyzers, IDEs and other tools.

python2-mpi4py 3.1.4
Dependencies: openmpi@4.1.6
Channel: guix-hpc
Location: guix-hpc/packages/solverstack.scm (guix-hpc packages solverstack)
Home page: https://github.com/mpi4py/mpi4py
Licenses: Modified BSD
Synopsis: Python bindings for the Message Passing Interface standard
Description:

MPI for Python (mpi4py) provides bindings of the Message Passing Interface (MPI) standard for the Python programming language, allowing any Python program to exploit multiple processors.

mpi4py is constructed on top of the MPI-1/MPI-2 specification and provides an object oriented interface which closely follows MPI-2 C++ bindings. It supports point-to-point and collective communications of any picklable Python object as well as optimized communications of Python objects (such as NumPy arrays) that expose a buffer interface.

python2-pycairo 1.18.2
Propagated dependencies: cairo@1.18.2
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://cairographics.org/pycairo/
Licenses: LGPL 2.1 MPL 1.1
Synopsis: Python bindings for cairo
Description:

Pycairo is a set of Python bindings for the Cairo graphics library.

python2-chardet 4.0.0
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://github.com/chardet/chardet
Licenses: LGPL 2.1+
Synopsis: Universal encoding detector for Python 2 and 3
Description:

This package provides chardet, a Python module that can automatically detect a wide range of file encodings.

python2-certifi 2021.10.8
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://certifi.io/
Licenses: ASL 2.0
Synopsis: Python CA certificate bundle
Description:

Certifi is a Python library that contains a CA certificate bundle, which is used by the Requests library to verify HTTPS requests.

python2-unicode 2.7
Channel: wigust
Location: wigust/packages/python.scm (wigust packages python)
Home page: http://kassiopeia.juls.savba.sk/
Licenses: GPL 3+
Synopsis: Display unicode character properties
Description:

unicode is a command-line utility that displays properties for a given unicode character, or searches unicode database for a given name.

python2-futures 3.2.0
Channel: rrr
Location: rrr/packages/python-xyz.scm (rrr packages python-xyz)
Home page: https://github.com/agronholm/pythonfutures
Licenses: Modified BSD
Synopsis: Backport of the concurrent.futures package from Python 3.2
Description:

The concurrent.futures module provides a high-level interface for asynchronously executing callables. This package backports the concurrent.futures package from Python 3.2

python2-minimal 2.7.18
Dependencies: expat@2.5.0 libffi@3.4.4 zlib@1.3
Channel: guix
Location: gnu/packages/python.scm (gnu packages python)
Home page: https://www.python.org
Licenses: Python Software Foundation License
Synopsis: High-level, dynamically-typed programming language
Description:

Python is a remarkably powerful dynamic programming language that is used in a wide variety of application domains. Some of its key distinguishing features include: clear, readable syntax; strong introspection capabilities; intuitive object orientation; natural expression of procedural code; full modularity, supporting hierarchical packages; exception-based error handling; and very high level dynamic data types.

python2-funcsigs 1.0.2
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: http://funcsigs.readthedocs.org
Licenses: ASL 2.0
Synopsis: Python function signatures from PEP362
Description:

Backport of funcsigs which was introduced in Python 3.3.

python2-dateutil 2.8.2
Propagated dependencies: python2-six@1.16.0
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://dateutil.readthedocs.io/en/stable/
Licenses: Modified BSD ASL 2.0
Synopsis: Extensions to the standard datetime module
Description:

The dateutil module provides powerful extensions to the standard datetime module, available in Python 2.3+.

python2-openpyxl 2.6.4
Propagated dependencies: python2-et-xmlfile@1.1 python2-jdcal@1.4.1
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://openpyxl.readthedocs.io
Licenses: Expat
Synopsis: Python library to read/write Excel 2010 XLSX/XLSM files
Description:

This Python library allows reading and writing to the Excel XLSX, XLSM, XLTX and XLTM file formats that are defined by the Office Open XML (OOXML) standard.

python2-coverage 5.0.3
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: http://nedbatchelder.com/code/coverage
Licenses: Modified BSD
Synopsis: Code coverage measurement for Python
Description:

Coverage measures code coverage, typically during test execution. It uses the code analysis tools and tracing hooks provided in the Python standard library to determine which lines are executable, and which have been executed.

python2-pathlib2 2.3.5
Propagated dependencies: python2-scandir@1.10.0 python2-six@1.16.0
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://pypi.org/project/pathlib2/
Licenses: Expat
Synopsis: Object-oriented file system paths - backport of standard pathlib module
Description:

The goal of pathlib2 is to provide a backport of standard pathlib module which tracks the standard library module, so all the newest features of the standard pathlib can be used also on older Python versions.

Pathlib offers a set of classes to handle file system paths. It offers the following advantages over using string objects:

  1. No more cumbersome use of os and os.path functions. Everything can be done easily through operators, attribute accesses, and method calls.

  2. Embodies the semantics of different path types. For example, comparing Windows paths ignores casing.

  3. Well-defined semantics, eliminating any inconsistencies or ambiguities (forward vs. backward slashes, etc.).

python2-pygobject 2.28.7
Dependencies: python2@2.7.18 glib@2.82.1 python2-pycairo@1.18.2 gobject-introspection@1.82.0
Propagated dependencies: libffi@3.4.4
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://pypi.org/project/PyGObject/
Licenses: LGPL 2.1+
Synopsis: Python bindings for GObject
Description:

Python bindings for GLib, GObject, and GIO.

python2-unittest2 1.1.0
Propagated dependencies: python2-six@1.16.0 python2-traceback2@1.4.0
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://pypi.org/project/unittest2/
Licenses: Python Software Foundation License
Synopsis: Python unit testing library
Description:

Unittest2 is a replacement for the unittest module in the Python standard library.

python2-pycparser 2.21
Channel: guix
Location: gnu/packages/python-xyz.scm (gnu packages python-xyz)
Home page: https://github.com/eliben/pycparser
Licenses: Modified BSD
Synopsis: C parser in Python
Description:

Pycparser is a complete parser of the C language, written in pure Python using the PLY parsing library. It parses C code into an AST and can serve as a front-end for C compilers or analysis tools.

python2-pyparsing 2.4.7
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://github.com/pyparsing/pyparsing
Licenses: Expat
Synopsis: Python parsing class library
Description:

The pyparsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. The pyparsing module provides a library of classes that client code uses to construct the grammar directly in Python code.

python2-soupsieve 1.9.2
Propagated dependencies: python2-backports-functools-lru-cache@1.6.1
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://github.com/facelessuser/soupsieve
Licenses: Expat
Synopsis: CSS selector library
Description:

Soup Sieve is a CSS selector library designed to be used with Beautiful Soup 4. It aims to provide selecting, matching, and filtering using modern CSS selectors. Soup Sieve currently provides selectors from the CSS level 1 specifications up through the latest CSS level 4 drafts and beyond (though some are not yet implemented).

python2-pytest-cov 2.8.1
Propagated dependencies: python2-coverage@5.0.3 python2-pytest@4.6.11
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://github.com/pytest-dev/pytest-cov
Licenses: Expat
Synopsis: Pytest plugin for measuring coverage
Description:

Pytest-cov produces coverage reports. It supports centralised testing and distributed testing in both load and each modes. It also supports coverage of subprocesses.

python2-setuptools 41.0.1
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://pypi.org/project/setuptools/
Licenses: Python Software Foundation License Expat ASL 2.0 FreeBSD
Synopsis: Library designed to facilitate packaging Python projects
Description:

Setuptools is a fully-featured, stable library designed to facilitate packaging Python projects, where packaging includes:

  • Python package and module definitions

  • distribution package metadata

  • test hooks

  • project installation

  • platform-specific details.

python2-matplotlib 2.2.5
Dependencies: cairo@1.18.2 freetype@2.13.0 glib@2.82.1 libpng@1.6.39 qhull@2020.2 tcl@8.6.12 tk@8.6.12
Propagated dependencies: python2@2.7.18 python2-dateutil@2.8.2 python2-functools32@3.2.3-2 python2-kiwisolver@1.0.1 python2-numpy@1.16.6 python2-pillow@6.2.2 python2-pycairo@1.18.2 python2-pygobject@2.28.7 python2-pyparsing@2.4.7 python2-six@1.16.0 python2-subprocess32@3.2.7 gobject-introspection@1.82.0 python2-backports-functools-lru-cache@1.6.1 python2-certifi@2021.10.8 python2-cycler@0.10.0 python2-pytz@2023.3.post1
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://matplotlib.org/
Licenses: Python Software Foundation License
Synopsis: 2D plotting library for Python
Description:

Matplotlib is a Python 2D plotting library which produces publication quality figures in a variety of hardcopy formats and interactive environments across platforms. Matplotlib can be used in Python scripts, the python and ipython shell, web application servers, and six graphical user interface toolkits.

python2-hypothesis 4.57.1
Propagated dependencies: python2-enum34@1.1.6 python-attrs-bootstrap@24.2.0 python2-sortedcontainers@2.4.0
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://github.com/HypothesisWorks/hypothesis
Licenses: MPL 2.0
Synopsis: Library for property based testing
Description:

Hypothesis is a library for testing your Python code against a much larger range of examples than you would ever want to write by hand. It’s based on the Haskell library, Quickcheck, and is designed to integrate seamlessly into your existing Python unit testing work flow.

python2-kiwisolver 1.0.1
Dependencies: libxcrypt@4.4.36
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: https://github.com/nucleic/kiwi
Licenses: Modified BSD
Synopsis: Fast implementation of the Cassowary constraint solver
Description:

Kiwi is an efficient C++ implementation of the Cassowary constraint solving algorithm. Kiwi has been designed from the ground up to be lightweight and fast. Kiwi ranges from 10x to 500x faster than the original Cassowary solver with typical use cases gaining a 40x improvement. Memory savings are consistently > 5x.

python2-scientific 2.9.4
Dependencies: netcdf@4.9.0
Propagated dependencies: python2-numpy@1.8.2 python2-pyro@3.16
Channel: guix-past
Location: past/packages/python27.scm (past packages python27)
Home page: http://dirac.cnrs-orleans.fr/ScientificPython
Licenses: CeCILL-C
Synopsis: Python modules for scientific computing
Description:

ScientificPython is a collection of Python modules that are useful for scientific computing. Most modules are rather general (Geometry, physical units, automatic derivatives, ...) whereas others are more domain-specific (e.g. netCDF and PDB support). The library is currently not actively maintained and works only with Python 2 and NumPy < 1.9.

Page: 123
Total results: 68