diff options
| author | Danny Milosavljevic <dannym@scratchpost.org> | 2017-06-03 08:22:12 +0200 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@scratchpost.org> | 2017-06-04 15:41:42 +0200 |
| commit | 620b59eac93a90d35ed957120dee0926c9f72be4 (patch) | |
| tree | 5a76ed796e0ab046d7f058bfef34b808349cc473 /gnu/packages/python.scm | |
| parent | 0960bf8b3976dcdc9554c288d16d229bc145ea8f (diff) | |
gnu: Add python-flex.
* gnu/packages/python.scm (python-flex, python2-flex): New variables.
Diffstat (limited to 'gnu/packages/python.scm')
| -rw-r--r-- | gnu/packages/python.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 8adf658f7ea..c2e9487e42f 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm | |||
| @@ -15142,3 +15142,32 @@ address is valid and really exists.") | |||
| 15142 | 15142 | ||
| 15143 | (define-public python2-validate-email | 15143 | (define-public python2-validate-email |
| 15144 | (package-with-python2 python-validate-email)) | 15144 | (package-with-python2 python-validate-email)) |
| 15145 | |||
| 15146 | (define-public python-flex | ||
| 15147 | (package | ||
| 15148 | (name "python-flex") | ||
| 15149 | (version "6.10.0") | ||
| 15150 | (source | ||
| 15151 | (origin | ||
| 15152 | (method url-fetch) | ||
| 15153 | (uri (pypi-uri "flex" version)) | ||
| 15154 | (sha256 | ||
| 15155 | (base32 | ||
| 15156 | "00pamnwla3khk8nyla7y28dq9jnh69swd7f4jfsl7sn1izs8n8zk")))) | ||
| 15157 | (build-system python-build-system) | ||
| 15158 | (propagated-inputs | ||
| 15159 | `(("python-click" ,python-click) | ||
| 15160 | ("python-iso8601" ,python-iso8601) | ||
| 15161 | ("python-jsonpointer" ,python-jsonpointer) | ||
| 15162 | ("python-pyyaml" ,python-pyyaml) | ||
| 15163 | ("python-requests" ,python-requests) | ||
| 15164 | ("python-rfc3987" ,python-rfc3987) | ||
| 15165 | ("python-six" ,python-six) | ||
| 15166 | ("python-validate-email" ,python-validate-email))) | ||
| 15167 | (home-page "https://github.com/pipermerriam/flex") | ||
| 15168 | (synopsis "Validates Swagger schemata") | ||
| 15169 | (description "@code{flex} can be used to validate Swagger schemata.") | ||
| 15170 | (license license:bsd-3))) | ||
| 15171 | |||
| 15172 | (define-public python2-flex | ||
| 15173 | (package-with-python2 python-flex)) | ||
