mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add python-dunamai.
* gnu/packages/python-xyz.scm (python-dunamai): New variable. Change-Id: Iabb0221c615ee345d1e557d2d428254929823283
This commit is contained in:
parent
77d4efec42
commit
573d478f72
1 changed files with 41 additions and 0 deletions
|
@ -23442,6 +23442,47 @@ (define-public python-dulwich
|
||||||
;; Can be used with either license.
|
;; Can be used with either license.
|
||||||
(license (list license:asl2.0 license:gpl2+))))
|
(license (list license:asl2.0 license:gpl2+))))
|
||||||
|
|
||||||
|
(define-public python-dunamai
|
||||||
|
(package
|
||||||
|
(name "python-dunamai")
|
||||||
|
(version "1.21.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "dunamai" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1i35i8ym6n8mpgrq31hivrvfciy12gv26jwlzimmkx9jy2spz0h5"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:test-flags
|
||||||
|
#~(list "-k" "not test__version__from_git__shallow")
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
;; These steps are taked from NixOS package definition:
|
||||||
|
;; nixpkgs/pkgs/development/python-modules/dunamai/default.nix
|
||||||
|
(add-before 'check 'pre-check
|
||||||
|
(lambda _
|
||||||
|
(setenv "PATH" (string-append #$output "/bin:" (getenv "PATH")))
|
||||||
|
(setenv "HOME" "/tmp")
|
||||||
|
(invoke "git" "config" "--global" "user.email" "nobody@example.com")
|
||||||
|
(invoke "git" "config" "--global" "user.name" "Nobody"))))))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-packaging))
|
||||||
|
(native-inputs
|
||||||
|
(list git-minimal
|
||||||
|
python-poetry-core
|
||||||
|
python-pytest))
|
||||||
|
(home-page "https://github.com/mtkennerly/dunamai")
|
||||||
|
(synopsis "Dynamic version generation")
|
||||||
|
(description
|
||||||
|
"Dunamai is Python library and command line tool for producing dynamic,
|
||||||
|
standards-compliant version strings, derived from tags in your version control
|
||||||
|
system. This facilitates uniquely identifying nightly or per-commit builds in
|
||||||
|
continuous integration and releasing new versions of your software simply by
|
||||||
|
creating a tag.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-pbkdf2
|
(define-public python-pbkdf2
|
||||||
(package
|
(package
|
||||||
(name "python-pbkdf2")
|
(name "python-pbkdf2")
|
||||||
|
|
Loading…
Reference in a new issue