nix-cde VS globus-timer-cli

Compare nix-cde vs globus-timer-cli and see what are their differences.

nix-cde

Nix Common Development Environment (by takeda)

globus-timer-cli

CLI for interacting with the Timer API (by globus)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
nix-cde globus-timer-cli
9 1
29 1
- -
6.4 5.4
6 days ago 8 months ago
Nix Python
MIT License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

nix-cde

Posts with mentions or reviews of nix-cde. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-26.

globus-timer-cli

Posts with mentions or reviews of globus-timer-cli. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-07-19.
  • Use `Python -m Pip`
    10 projects | news.ycombinator.com | 19 Jul 2022
    It has only recently sunk in for me that, with the latest versions, Pip is not a tool for maintaining an environment and list of dependencies (where you'd have a lockfile, for example). Instead, it is an interface to…

    1. Download packages from PyPi (or a different repository that provides the same interface)

    2. Read the pyproject.toml file to find the build backend to use, and then install that.

    3. Call the build backend to actually do the installation. This can be Poetry, Setuptools, Flit, or something else.

    Pipenv is another such interface.

    PEP 517 (https://peps.python.org/pep-0517/) created pyproject.toml and defined the API that build backends follow. That API includes a way for the build backend to tell Pip (or Pipenv, etc.) what dependencies to install. For systems that have a lockfile (like Pipenv), that could be a list of packages with explicit versions.

    PIP 660 extended PEP 517, defining a standard way to have "editable installs". In other words, a way to support `pip install -e package`, or even `pip install -e .`.

    The above is all my understanding, which is not at all authoritative!

    It's worth checking out the list of packaging-related PEPs: https://peps.python.org/topic/packaging/ It's worth reading PEPs 518 and 621.

    As an example, here's a Python package that uses Poetry: https://github.com/globus/globus-timer-cli It works perfectly fine with Pip, because Pip sees (via `pyproject.toml`) that it needs to pull in Poetry, and call it to do the actual install.

    Here's an older repo of mine, where I've just started to learn about the transition: https://github.com/stanford-rc/mais-apis-python/blob/main/py... In this case, I could delete `pyproject.toml` entirely, Pip would see the `setup.py` file, and understand to use Setuptools. This was me when I was just starting to learn about the transition.

    Finally, here's a newer repo of mine, where I've ditched setup.py (and _almost_ ditched setup.cfg) entirely: https://github.com/stanford-rc/globus-group-manager I'm still using Setuptools, but all of the metadata and requirements are included in the `pyproject.toml` file.

    It's definitely been a rocky transition, but it's really looking (to me, at least) like we're at (or near) the point where I can just use `pip install …` and it'll work, regardless of the build backend in use!

What are some alternatives?

When comparing nix-cde and globus-timer-cli you can also consider the following projects:

hasql-interpolate

sigstore-python - A Sigstore client for Python

aws-lambda-python-runtime-interface-client

mais-apis-python - Python client for Stanford MaIS APIs

nixml - NIX + YAML for easy to use reproducible environments

pyenv - Simple Python version management

m1-terraform-provider-helper - CLI to support with downloading and compiling terraform providers for Mac with M1 chip

pip - The Python package installer

asdf - Extendable version manager with support for Ruby, Node.js, Elixir, Erlang & more

devenv - Fast, Declarative, Reproducible, and Composable Developer Environments