aboutsummaryrefslogtreecommitdiff
path: root/tw/packages/alice.scm
blob: 9039d0083327e5f683d63c279d71b6dc1d04af25 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
(define-module (tw packages alice)
  #:use-module (gnu packages check)
  #:use-module (gnu packages python-build)
  #:use-module (gnu packages python-check)
  #:use-module (gnu packages python-web)
  #:use-module (gnu packages python-xyz)
  #:use-module (guix build-system python)
  #:use-module (guix build-system pyproject)
  #:use-module (guix download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages))

(define-public python-alibuild
  (package
    (name "python-alibuild")
    (version "1.14.2")
    (source (origin
              (method url-fetch)
              (uri (pypi-uri "alibuild" version))
              (sha256 (base32 "0mmvhksxdg0xh17disghwhsbr46i43cw04ak34vzbb75g3wphnqd"))))
    (build-system python-build-system)
    (propagated-inputs (list python-boto3 python-distro python-jinja2
                             python-pyyaml python-requests))
    (native-inputs (list python-setuptools-scm))
    (home-page "https://alisw.github.io/alibuild/")
    (synopsis "ALICE Build Tool")
    (description "ALICE Build Tool")
    (license license:gpl3)))

(define-public python-cerberus
  ;; For python-alidistlint
  (package
    (name "python-cerberus")
    (version "1.3.4")
    (source (origin
              (method url-fetch)
              (uri (pypi-uri "Cerberus" version))
              (sha256 (base32 "0z1336jqp4p55kf9glc8vwhi1b53f0qnpwgdg6d8sjdjahwipcni"))))
    (build-system python-build-system)
    (arguments '(#:tests? #f))   ; tests currently fail
    (native-inputs (list python-pytest python-pytest-runner python-pytest-benchmark))
    (propagated-inputs (list python-setuptools))
    (home-page "http://docs.python-cerberus.org")
    (synopsis "Lightweight, extensible schema and data validation tool for Python dictionaries.")
    (description "Lightweight, extensible schema and data validation tool for Python dictionaries.")
    (license #f)))

(define-public python-alidistlint
  (package
    (name "python-alidistlint")
    (version "1.3.4")
    (source (origin
              (method url-fetch)
              (uri (pypi-uri "alidistlint" version))
              (sha256 (base32 "168x6qfh2k4ivzq611ddb32ksd0914d70lcnz8qzx202l49xbf9x"))))
    (build-system pyproject-build-system)  ; we don't have setup.py, only pyproject.toml
    (arguments '(#:tests? #f))             ; there are no tests, and build fails if #t
    (propagated-inputs (list python-cerberus python-pyyaml))
    (native-inputs (list python-setuptools-scm))
    (home-page "https://github.com/TimoWilken/alidistlint")
    (synopsis "A code linter for alidist packages")
    (description "This package provides a code linter for alidist packages.")
    (license license:gpl3)))