_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/
python-execnet 2.1.1
Channel: guix
Location: gnu/packages/python-xyz.scm (gnu packages python-xyz)
Home page: https://codespeak.net/execnet/
Licenses: Expat
Synopsis: Rapid multi-Python deployment
Description:

Execnet provides a share-nothing model with channel-send/receive communication for distributing execution across many Python interpreters across version, platform and network barriers. It has a minimal and fast API targeting the following uses:

  1. distribute tasks to (many) local or remote CPUs

  2. write and deploy hybrid multi-process applications

  3. write scripts to administer multiple environments

python-pymonad 2.4.0
Channel: guix
Location: gnu/packages/python-xyz.scm (gnu packages python-xyz)
Home page: https://github.com/jasondelaat/pymonad
Licenses: Modified BSD
Synopsis: Monadic style functional programming for Python
Description:

python-pymonad implements data structures typically available in purely functional or functional first programming languages such as Haskell and F#. Included are

  • Monad and Monoid data types with several common monads such as Maybe and State

  • Useful tools such as the @curry decorator for defining curried functions

  • Type annotations to help ensure correct usage

python-msgspec 0.16.0
Propagated dependencies: python-pyyaml@6.0.1 python-tomli@2.1.0 python-tomli-w@1.0.0
Channel: guix
Location: gnu/packages/serialization.scm (gnu packages serialization)
Home page: https://jcristharif.com/msgspec/
Licenses: Modified BSD
Synopsis: Fast serialization/validation library
Description:

msgspec is a fast serialization and validation library, with builtin support for JSON, MessagePack, YAML, and TOML. It includes the following features:

  • High performance encoders/decoders for common protocols.

  • Support for a wide variety of Python types.

  • Zero-cost schema validation using familiar Python type annotations.

  • A speedy Struct type for representing structured data.

python-hasasia 1.2.3
Propagated dependencies: python-astropy@6.1.7 python-numpy@1.24.4 python-scipy@1.12.0
Channel: guix
Location: gnu/packages/astronomy.scm (gnu packages astronomy)
Home page: https://github.com/Hazboun6/hasasia
Licenses: Expat
Synopsis: Pulsar timing array sensitivity curves calculation in Python
Description:

This package provides a Python package to calculate gravitational-wave sensitivity curves for pulsar timing arrays.

Features:

  • pulsar transmission functions

  • inverse-noise-weighted transmission functions

  • individual pulsar sensitivity curves

  • pulsar timing array sensitivity curves as characteristic strain, strain sensitivity or energy density

  • power-law integrated sensitivity curves

  • sensitivity sky maps for pulsar timing arrays

python-serpent 1.28
Channel: guix
Location: gnu/packages/python-xyz.scm (gnu packages python-xyz)
Home page: https://github.com/irmen/Serpent
Licenses: Expat
Synopsis: Serializer for literal Python expressions
Description:

Serpent provides ast.literal_eval()-compatible object tree serialization. It serializes an object tree into bytes (an utf-8 encoded string) that can be decoded and then passed as-is to ast.literal_eval() to rebuild the original object tree.

Because only safe literals are encoded, it is safe to send serpent data to other machines, such as over the network.

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.

python-coolest 0.1.9
Propagated dependencies: python-astropy@6.1.7 python-getdist@1.5.3 python-jsonpickle@4.0.0 python-numpy@1.24.4 python-pandas@2.2.3 python-scipy@1.12.0
Channel: guix
Location: gnu/packages/astronomy.scm (gnu packages astronomy)
Home page: https://github.com/aymgal/COOLEST
Licenses: GPL 3
Synopsis: Strong Gravitational Lensing Analyses
Description:

The COde-independent Organized LEns STandard (COOLEST) defines a set of conventions to be shared across the strong lensing community, in order to consistently store, share and improve lens modeling analyses. In short, this project provides tools to manipulate lens models as a single, human-readable JSON template file alongside Python routines for visualizing and comparing lens models possibly obtained from different modeling codes.

python-ray-cpp 2.38.0
Propagated dependencies: python-aiohttp@3.8.4 python-aiosignal@1.3.1 python-click@8.1.7 python-colorama@0.4.4 python-filelock@3.16.1 python-frozenlist@1.2.0 python-jsonschema@4.23.0 python-msgpack@1.0.4 python-numpy@1.24.4 python-packaging@24.2 python-pandas@2.2.3 python-protobuf@3.20.2 python-psutil@5.9.2 python-pyyaml@6.0.1 python-ray@2.38.0 python-requests@2.31.0 python-setproctitle@1.3.2
Channel: guix-science
Location: guix-science/packages/machine-learning.scm (guix-science packages machine-learning)
Home page: https://github.com/ray-project/ray
Licenses: ASL 2.0
Synopsis: Framework for scaling machine learning applications
Description:

Ray is a unified framework for scaling AI and Python applications. Ray consists of a core distributed runtime and a set of AI libraries for simplifying ML compute. These are the provided Ray AI libraries:

  • Data: Scalable datasets for ML;

  • Train: Distributed training;

  • Tune: Scalable hyperparameter tuning;

  • RLlib: Scalable reinforcement learning;

  • Serve: Scalable and programmable serving.

python-vulture 2.7
Propagated dependencies: python-toml@0.10.2
Channel: guix
Location: gnu/packages/python-check.scm (gnu packages python-check)
Home page: https://github.com/jendrikseipp/vulture
Licenses: Expat
Synopsis: Find dead Python code
Description:

Vulture finds unused code in Python programs. This is useful for cleaning up and finding errors in large code bases. If you run Vulture on both your library and test suite you can find untested code. Due to Python's dynamic nature, static code analyzers like Vulture are likely to miss some dead code. Also, code that is only called implicitly may be reported as unused.

python-pyvista 0.42.3
Propagated dependencies: python-imageio@2.33.1 python-matplotlib@3.8.2 python-meshio@5.3.4 python-numpy@1.24.4 python-pillow@9.2.0 python-pooch@1.8.1 python-scooby@0.5.12 vtk@9.3.0
Channel: guix
Location: gnu/packages/python-science.scm (gnu packages python-science)
Home page: https://docs.pyvista.org/
Licenses: Expat
Synopsis: 3D plotting and mesh analysis through VTK
Description:

PyVista is...

  • Pythonic VTK: a high-level API to the Visualization Toolkit (VTK);

  • mesh data structures and filtering methods for spatial datasets;

  • 3D plotting made simple and built for large/complex data geometries.

This package provides a Pythonic, well-documented interface exposing VTK's powerful visualization backend to facilitate rapid prototyping, analysis, and visual integration of spatially referenced datasets.

python-sirilic 1.15.12
Propagated dependencies: python-requests@2.31.0 python-wxpython@4.2.0
Channel: guix
Location: gnu/packages/astronomy.scm (gnu packages astronomy)
Home page: https://siril.org/tutorials/pysiril/
Licenses: GPL 3
Synopsis: Acquisition files preparation software to proces with SiriL
Description:

SiriLic (SiriL's Interactif Companion) is a software for preparing acquisition files (raw, Biases, Flat and Dark) for processing with SiriL software.

Features:

  • structuring the SiriL working directory into sub-folders

  • convert Raw, Biases , Dark or Flat files into SiriL sequence

  • automatically generate the SiriL script according to the files present and the options

  • batch process multiple channel and sessions

python-plaster 1.0
Channel: guix
Location: gnu/packages/python-web.scm (gnu packages python-web)
Home page: https://docs.pylonsproject.org/projects/plaster/en/latest/
Licenses: Repoze
Synopsis: Configuration loader for multiple config file formats
Description:

Plaster is a loader interface around multiple config file formats. It exists to define a common API for applications to use when they wish to load configuration. The library itself does not aim to handle anything except a basic API that applications may use to find and load configuration settings. Any specific constraints should be implemented in a pluggable loader which can be registered via an entrypoint.

python-pympler 1.0.1
Channel: guix
Location: gnu/packages/python-xyz.scm (gnu packages python-xyz)
Home page: https://pythonhosted.org/Pympler/
Licenses: ASL 2.0
Synopsis: Measure, monitor and analyze memory behavior
Description:

Pympler is a development tool to measure, monitor and analyze the memory behavior of Python objects in a running Python application.

By pympling a Python application, detailed insight in the size and the lifetime of Python objects can be obtained. Undesirable or unexpected runtime behavior like memory bloat and other pymples can easily be identified.

A web profiling frontend exposes process statistics, garbage visualisation and class tracker statistics.

python-random2 1.0.1
Channel: guix
Location: gnu/packages/python-xyz.scm (gnu packages python-xyz)
Home page: https://pypi.python.org/pypi/random2
Licenses: Python Software Foundation License
Synopsis: Python 3 version of the Python 2 @code{random} module
Description:

This package provides a Python 3 ported version of Python 2.7’s random module. It has also been back-ported to work in Python 2.6.

In Python 3, the implementation of randrange() was changed, so that even with the same seed you get different sequences in Python 2 and 3.

This package closes that gap, allowing stable random number generation between the different Python versions.

python-coolbox 0.3.8
Dependencies: pybind11@2.8.1
Propagated dependencies: python-cooler@0.9.3 python-dna-features-viewer@3.1.1 python-fire@0.6.0 python-h5py@3.8.0 python-intervaltree@3.1.0 python-ipywidgets@8.1.2 jupyter@1.0.0 python-matplotlib@3.8.2 python-nbformat@5.10.4 python-numpy@1.24.4 python-numpydoc@1.5.0 python-pandas@2.2.3 python-pybbi@0.3.0 python-pytest@8.3.3 python-scipy@1.12.0 python-statsmodels@0.14.0 python-strawc@0.0.2.1 python-svgutils@0.3.4 python-termcolor@2.5.0 python-voila@0.3.5
Channel: guix
Location: gnu/packages/bioinformatics.scm (gnu packages bioinformatics)
Home page: https://github.com/GangCaoLab/CoolBox
Licenses: GPL 3+
Synopsis: Genomic data visualization toolkit
Description:

CoolBox is a toolkit for visual analysis of genomics data. It aims to be highly compatible with the Python ecosystem, easy to use and highly customizable with a well-designed user interface. It can be used in various visualization situations, for example, to produce high-quality genome track plots or fetch common used genomic data files with a Python script or command line, interactively explore genomic data within Jupyter environment or web browser.

python-socksio 1.0.0
Channel: guix
Location: gnu/packages/python-web.scm (gnu packages python-web)
Home page: https://github.com/sethmlarson/socksio
Licenses: Expat
Synopsis: Sans-I/O implementation of SOCKS4, SOCKS4A, and SOCKS5
Description:

The socksio Python module is a client-side sans-I/O SOCKS proxy implementation. It supports SOCKS4, SOCKS4A, and SOCKS5. socksio is a sans-I/O library similar to h11 or h2; this means the library itself does not handle the actual sending of the bytes through the network, it only deals with the implementation details of the SOCKS protocols. It can be paired with any I/O library.

python-scandir 1.10.0
Channel: guix
Location: gnu/packages/python-xyz.scm (gnu packages python-xyz)
Home page: https://github.com/benhoyt/scandir
Licenses: Modified BSD
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.

python-peachpy 0.2.0-2.913d74c
Propagated dependencies: python-six@1.16.0 python-opcodes@0.3.14
Channel: guix
Location: gnu/packages/python-xyz.scm (gnu packages python-xyz)
Home page: https://github.com/Maratyszcza/PeachPy
Licenses: FreeBSD
Synopsis: Efficient assembly code generation in Python
Description:

PeachPy is a Python framework for writing high-performance assembly kernels. PeachPy aims to simplify writing optimized assembly kernels while preserving all optimization opportunities of traditional assembly.

PeachPy can generate ELF, MS-COFF, Mach-O object files, and assembly listings for the Go language tool chain; it adapts to different calling conventions and application binary interfaces (ABIs); it takes care of register allocation; it supports x86_64 instructions up to AVX-512 and SHA.

python-hdbscan 0.8.33
Propagated dependencies: python-joblib@1.4.2 python-numpy@1.24.4 python-scikit-learn@1.4.2 python-scipy@1.12.0
Channel: guix
Location: gnu/packages/machine-learning.scm (gnu packages machine-learning)
Home page: https://github.com/scikit-learn-contrib/hdbscan
Licenses: Modified BSD
Synopsis: High performance implementation of HDBSCAN clustering
Description:

HDBSCAN - Hierarchical Density-Based Spatial Clustering of Applications with Noise. Performs DBSCAN over varying epsilon values and integrates the result to find a clustering that gives the best stability over epsilon. This allows HDBSCAN to find clusters of varying densities (unlike DBSCAN), and be more robust to parameter selection. HDBSCAN is ideal for exploratory data analysis; it's a fast and robust algorithm that you can trust to return meaningful clusters (if there are any).

python-pytools 2021.2.7
Propagated dependencies: python-appdirs@1.4.4 python-numpy@1.24.4
Channel: guix
Location: gnu/packages/opencl.scm (gnu packages opencl)
Home page: https://pypi.org/project/pytools/
Licenses: Expat
Synopsis: Assorted tools for Python
Description:

Pytools is a bag of things that are ``missing'' from the Python standard library:

  • small helper functions such as len_iterable, argmin, tuple generation, permutation generation, ASCII table pretty printing, GvR's monkeypatch_xxx hack, the elusive flatten, and much more.

  • Michele Simionato's decorator module

  • A time-series logging module, pytools.log.

  • Batch job submission, pytools.batchjob.

  • A lexer, pytools.lex.

python-wrapper 3.10.7
Dependencies: bash@5.1.16
Propagated dependencies: python@3.10.7
Channel: guix
Location: gnu/packages/python.scm (gnu packages python)
Home page: https://www.python.org
Licenses: Python Software Foundation License
Synopsis: Wrapper for the Python 3 commands
Description:

This package provides wrappers for the commands of Python 3.x such that they can also be invoked under their usual names---e.g., python instead of python3 or pip instead of pip3.

To function properly, this package should not be installed together with the python package: this package uses the python package as a propagated input, so installing this package already makes both the versioned and the unversioned commands available.

python-wrapper 3.10.7
Dependencies: bash@5.1.16
Propagated dependencies: python@3.10.7
Channel: guix
Location: gnu/packages/python.scm (gnu packages python)
Home page: https://www.python.org
Licenses: Python Software Foundation License
Synopsis: Wrapper for the Python 3 commands
Description:

This package provides wrappers for the commands of Python 3.x such that they can also be invoked under their usual names---e.g., python instead of python3 or pip instead of pip3.

To function properly, this package should not be installed together with the python package: this package uses the python package as a propagated input, so installing this package already makes both the versioned and the unversioned commands available.

python-netcdf4 1.6.0
Dependencies: netcdf@4.9.0 hdf4@4.2.16-2 hdf5@1.10.9
Propagated dependencies: python-numpy@1.24.4 python-cftime@1.6.2
Channel: guix
Location: gnu/packages/python-xyz.scm (gnu packages python-xyz)
Home page: https://github.com/Unidata/netcdf4-python
Licenses: ISC Expat
Synopsis: Python/numpy interface to the netCDF library
Description:

Netcdf4-python is a Python interface to the netCDF C library. netCDF version 4 has many features not found in earlier versions of the library and is implemented on top of HDF5. This module can read and write files in both the new netCDF 4 and the old netCDF 3 format, and can create files that are readable by HDF5 clients. The API is modelled after Scientific.IO.NetCDF, and should be familiar to users of that module.

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.

Total results: 3594