mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-20 05:37:34 -05:00
gnu: Add python-git-hammer.
* gnu/packages/python-xyz.scm (python-git-hammer): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
6a8bac06d3
commit
5a6c861db9
1 changed files with 40 additions and 0 deletions
|
@ -18299,6 +18299,46 @@ (define-public python-globber
|
|||
path components.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-git-hammer
|
||||
(package
|
||||
(name "python-git-hammer")
|
||||
(version "0.3.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/asharov/git-hammer")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0f9xlk86ijzpdj25hr1q4wcy8k72v3w470ngwm9mpdkfj8ng84wr"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-setup.py
|
||||
(lambda _
|
||||
(substitute* "setup.py"
|
||||
(("setup\\(")
|
||||
"setup(\n test_suite=\"test\",")))))))
|
||||
(propagated-inputs
|
||||
`(("python-beautifultable" ,python-beautifultable)
|
||||
("python-dateutil" ,python-dateutil)
|
||||
("python-gitpython" ,python-gitpython)
|
||||
("python-globber" ,python-globber)
|
||||
("python-matplotlib" ,python-matplotlib)
|
||||
("python-sqlalchemy" ,python-sqlalchemy)
|
||||
("python-sqlalchemy-utils"
|
||||
,python-sqlalchemy-utils)))
|
||||
(home-page "https://github.com/asharov/git-hammer")
|
||||
(synopsis "Provide statistics for git repositories")
|
||||
(description
|
||||
"Git Hammer is a statistics tool for projects in git repositories.
|
||||
Its major feature is tracking the number of lines authored by each person for every
|
||||
commit, but it also includes some other useful statistics.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-fusepy
|
||||
(package
|
||||
(name "python-fusepy")
|
||||
|
|
Loading…
Reference in a new issue