maav / guix-mirror (public) (License: GPLv3+) (since 2019-11-02) (hash sha1)
Mirror of GNU Guix (https://git.savannah.gnu.org/git/guix.git) with personal branches integrated into master branch.
List of commits:
Subject Hash Author Date (UTC)
gnu: Add python-dpath. e8c5533d26b4441c96e9ae92350efcb24d787c4b Joseph LaFreniere 2020-10-10 06:03:18
gnu: Add python-dictdiffer. 23a97f52405b49309bf8825099d8c66a9ad9998d Joseph LaFreniere 2020-10-06 01:43:32
gnu: Add bindfs. 6b219b899217d635e5f20e212a88393caff83cd8 Morgan Smith 2020-10-09 22:20:53
gnu: git-annex: Update to 8.20201007. 1bf912e58e08c69e74964d8b350537235e13dc39 Kyle Meyer 2020-10-07 20:49:46
gnu: muchsync: Use pandoc instead of ghc-pandoc. 8514dfdee61b04f0daf22b4a957df1bea4b3f298 zimoun 2020-10-07 15:24:11
gnu: python-chardet: Enable tests. 331aaf52806b27430c4efaf8f230097ede69e61a Lars-Dominik Braun 2020-10-07 07:32:34
gnu: Add dex. 3182d629a25b1132fc542391b451580d44d9f92c James Smith 2020-10-07 20:44:14
gnu: nmap: Update license. 2323a7120a0f3ed96fedfff42e86c0aee97995c0 Marius Bakke 2020-10-13 20:16:57
gnu: xf86-input-libinput: Update to 0.30.0. 17032767da189a31d24fc350e68d065ec12bb9f6 Marius Bakke 2020-10-13 15:00:14
gnu: Remove python2-gst. 55fe84c6ebd37e6ee82114d4fc2c09ed42d1b3c0 Marius Bakke 2020-10-12 22:50:00
gnu: gst-plugins-bad: Add support for Secure Reliable Transport (SRT). ada061c12ac86b430a6fdfc662cd9cb4217da67c Leo Famulari 2020-10-13 03:25:28
gnu: VLC: Add support for Secure Reliable Transport (SRT). 9c5c64b8e11c2af7da6ee460372d4360a6348ad5 Leo Famulari 2020-10-10 04:53:33
gnu: FFmpeg: Add support for Secure Reliable Transport (SRT). 64661754fd8a32b9298d24e815cdbe568a8ffe77 Leo Famulari 2020-10-10 04:52:24
gnu: Add SRT 1.4.1. 021e92780b8ce87efde70bb069cb6a8d762e544c Leo Famulari 2020-10-10 04:51:59
installer: Add Emacs EXWM desktop environment. 1197b8b20f4fca4ce03bbc5fa75e18d54e3717c0 Jan (janneke) Nieuwenhuizen 2020-10-11 10:45:00
gnu: mediainfo: Update to 20.09. d5318e0c5ac62b57c8878d96fbea4e05c1d0d27e Tobias Geerinckx-Rice 2020-10-13 17:01:19
gnu: libmediainfo: Update to 20.09. 42a5c643a7658503c645fca47f69cdf81c5202df Tobias Geerinckx-Rice 2020-10-13 17:01:15
gnu: dos2unix: Cross-compile. b4d7d41b222e6b8d8e85980e0da85785c86c0966 Tobias Geerinckx-Rice 2020-10-13 17:00:59
gnu: dos2unix: Update to 7.4.2. e2d33f9e33b817490768fc723761c6a29e34cb9a Tobias Geerinckx-Rice 2020-10-13 16:58:46
gnu: vim: Update to 8.2.1840. 9e0de744b183a4bfdf537f68d93568746af9e953 Tobias Geerinckx-Rice 2020-10-13 16:49:08
Commit e8c5533d26b4441c96e9ae92350efcb24d787c4b - gnu: Add python-dpath.
* gnu/packages/python-xyz.scm (python-dpath): New variable.

Signed-off-by: Marius Bakke <marius@gnu.org>
Author: Joseph LaFreniere
Author date (UTC): 2020-10-10 06:03
Committer name: Marius Bakke
Committer date (UTC): 2020-10-13 21:36
Parent(s): 23a97f52405b49309bf8825099d8c66a9ad9998d
Signer:
Signing key: A2A06DF2A33A54FA
Signing status: E
Tree: c261699cb04be8c9e05930d055c77897f376e989
File Lines added Lines deleted
gnu/packages/python-xyz.scm 36 0
File gnu/packages/python-xyz.scm changed (mode: 100644) (index f5c58609f5..10fa9b54b4)
... ... dates in almost any string formats commonly found on web pages.")
22067 22067 (description "This package provides a parser for Python dependency files.") (description "This package provides a parser for Python dependency files.")
22068 22068 (license license:expat))) (license license:expat)))
22069 22069
22070 (define-public python-dpath
22071 (package
22072 (name "python-dpath")
22073 (version "2.0.1")
22074 (source
22075 (origin
22076 (method url-fetch)
22077 (uri (pypi-uri "dpath" version))
22078 (sha256
22079 (base32
22080 "1ymi9ssk7i0mx3mviplf4csfvzibdd6wyj4qzj6s487n9xgnp85y"))))
22081 (build-system python-build-system)
22082 (native-inputs
22083 `(("python-hypothesis" ,python-hypothesis)
22084 ("python-mock" ,python-mock)
22085 ("python-nose" ,python-nose)))
22086 (arguments
22087 '(#:phases
22088 (modify-phases %standard-phases
22089 (replace 'check
22090 (lambda* (#:key inputs outputs #:allow-other-keys)
22091 (add-installed-pythonpath inputs outputs)
22092 ;; This invokation is taken from tox.ini.
22093 (invoke "nosetests" "-d" "-v" "tests/"))))))
22094 (home-page "https://github.com/akesterson/dpath-python")
22095 (synopsis "Filesystem-like pathing and searching for dictionaries")
22096 (description
22097 "@code{python-dpath} is a library for accessing and searching
22098 dictionaries via /slashed/paths ala xpath.
22099
22100 Basically it lets you glob over a dictionary as if it were a filesystem. It
22101 allows you to specify globs (ala the bash eglob syntax, through some advanced
22102 fnmatch.fnmatch magic) to access dictionary elements, and provides some
22103 facility for filtering those results.")
22104 (license license:expat)))
22105
22070 22106 (define-public python-safety (define-public python-safety
22071 22107 (package (package
22072 22108 (name "python-safety") (name "python-safety")
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/maav/guix-mirror

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/maav/guix-mirror

Clone this repository using git:
git clone git://git.rocketgit.com/user/maav/guix-mirror

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main