12345678910111213141516171819202122 |
- (define-public python-cola
- (package
- (name "python-cola")
- (version "0.1.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "Cola" version))
- (sha256
- (base32
- "09lz85krmfiajvcmjvz17f7441sd7ff6cbgb8fyk5f4iq9df8l09"))))
- (build-system python-build-system)
- (propagated-inputs
- `(("python-pyyaml" ,python-pyyaml)))
- (home-page "http://colaframework.org")
- (synopsis
- "A high-level distributed crawling framework")
- (description
- "A high-level distributed crawling framework")
- (license #f)))
|