123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- (define-public python-oembed
- (package
- (name "python-oembed")
- (version "0.2.4")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "python-oembed" version))
- (sha256
- (base32
- "1shn8wqpxihcwggi4c6qvly4x7ka5flvfffic0afrf3spnilx070"))))
- (build-system python-build-system)
- (home-page
- "http://github.com/abarmat/python-oembed")
- (synopsis "OEmbed consumer library for Python")
- (description
- "OEmbed consumer library for Python")
- (license license:expat)))
- (define-public python-lassie
- (package
- (name "python-lassie")
- (version "0.11.7")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "lassie" version))
- (sha256
- (base32
- "0aw5sfp65q98gxrcindcdqyv9h5cjr7z13hbd7lxjhrb5w3m18x9"))))
- (build-system python-build-system)
- (propagated-inputs
- `(("python-beautifulsoup4" ,python-beautifulsoup4)
- ("python-html5lib" ,python-html5lib)
- ("python-oembed" ,python-oembed)
- ("python-requests" ,python-requests)))
- (home-page
- "https://github.com/michaelhelmick/lassie/tree/master")
- (synopsis
- "Lassie is a Python library for retrieving basic content from websites")
- (description
- "Lassie is a Python library for retrieving basic content from websites")
- (license #f)))
|