aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages/python-xyz.scm
blob: 46ce4d9b456704a2314ec7b76624964512b7aff5 (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
66
67
68
69
70
71
(define-module (oni packages python-xyz)
  #:use-module (guix packages)
  #:use-module (guix utils)
  #:use-module (guix download)
  #:use-module (guix build-system python)
  #:use-module (guix build-system pyproject)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (gnu packages python-xyz)
  #:use-module (gnu packages check)
  #:use-module (gnu packages python-check)
  #:use-module (gnu packages python-web)
  #:use-module (gnu packages python-build))

(define-public python-docopt-subcommands
  (package
    (name "python-docopt-subcommands")
    (version "4.0.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "docopt_subcommands" version))
       (sha256
        (base32 "0fi4s9q6cx6mq3w53l0lfr7c4h8n7d20jw316d1paka7jqzw64g5"))))
    (build-system pyproject-build-system)
    (propagated-inputs (list python-docopt))
    (native-inputs (list python-hypothesis python-pytest python-twine
                         python-wheel))
    (home-page "https://github.com/abingham/docopt-subcommands")
    (synopsis "create subcommand-based CLI programs with docopt")
    (description "create subcommand-based CLI programs with docopt")
    (license license:expat)))

(define-public python-ultan
  (package
    (name "python-ultan")
    (version "2.1.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "ultan" version))
       (sha256
        (base32 "1rwka329xmxpa0h9j175gfmw0y8r7axb7bs9v1pp3lzhcbzg23qi"))))
    (build-system pyproject-build-system)
    (propagated-inputs (list python-docopt-subcommands))
    (native-inputs (list python-hypothesis python-pytest python-tox))
    (home-page "https://github.com/sixty-north/ultan")
    (synopsis "Python name and documentation server")
    (description "Python name and documentation server")
    (license license:expat)))

(define-public python-traad
  (package
    (name "python-traad")
    (version "3.2.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "traad" version))
       (sha256
        (base32 "1mr0cfy4ch7lqvyf5b6sr04l0jgdqjcbgpz7k9h7swrr9ns0mmzk"))))
    (build-system pyproject-build-system)
    (propagated-inputs (list python-rope python-ultan))
    (native-inputs (list python-pytest python-tox python-twine python-webtest
                         python-wheel))
    (home-page "http://github.com/abingham/traad")
    (synopsis "A JSON+HTTP server for the rope Python refactoring library.")
    (description
     "This package provides a JSON+HTTP server for the rope Python refactoring
library.")
    (license license:expat)))