summaryrefslogtreecommitdiff
path: root/tw/packages/alice.scm
blob: 197fb5bb63ed5d85d123cdd8edf00aac2975c2d4 (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
64
65
(define-module (tw packages alice)
  #:use-module (gnu packages check)
  #:use-module (gnu packages package-management)
  #: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.15.3")
    (source (origin
              (method url-fetch)
              (uri (pypi-uri "alibuild" version))
              (sha256 (base32 "1a4lqfv07lkx3if7il0ja1l88f870ngi05j3y2kppbhljn4drwp3"))))
    (build-system python-build-system)
    (inputs (list modules))   ; for alienv
    (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.5")
    (source (origin
              (method url-fetch)
              (uri (pypi-uri "Cerberus" version))
              (sha256 (base32 "0hknsk83cjbfs63v73wzsqsb39aq28bn03nmqrp1pxvf4q81w0c1"))))
    (build-system pyproject-build-system)  ; there is no setup.py
    (arguments '(#:tests? #f))             ; pytest finds no tests, and build fails if #t
    (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.6.0")
    (source (origin
              (method url-fetch)
              (uri (pypi-uri "alidistlint" version))
              (sha256 (base32 "159a3hrzn0pmgws46i3sn55jhkh6pzxjy3r1ycj8j2rc7aqr9j2w"))))
    (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)))