python-lassie.scm 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. (define-public python-oembed
  2. (package
  3. (name "python-oembed")
  4. (version "0.2.4")
  5. (source
  6. (origin
  7. (method url-fetch)
  8. (uri (pypi-uri "python-oembed" version))
  9. (sha256
  10. (base32
  11. "1shn8wqpxihcwggi4c6qvly4x7ka5flvfffic0afrf3spnilx070"))))
  12. (build-system python-build-system)
  13. (home-page
  14. "http://github.com/abarmat/python-oembed")
  15. (synopsis "OEmbed consumer library for Python")
  16. (description
  17. "OEmbed consumer library for Python")
  18. (license license:expat)))
  19. (define-public python-lassie
  20. (package
  21. (name "python-lassie")
  22. (version "0.11.7")
  23. (source
  24. (origin
  25. (method url-fetch)
  26. (uri (pypi-uri "lassie" version))
  27. (sha256
  28. (base32
  29. "0aw5sfp65q98gxrcindcdqyv9h5cjr7z13hbd7lxjhrb5w3m18x9"))))
  30. (build-system python-build-system)
  31. (propagated-inputs
  32. `(("python-beautifulsoup4" ,python-beautifulsoup4)
  33. ("python-html5lib" ,python-html5lib)
  34. ("python-oembed" ,python-oembed)
  35. ("python-requests" ,python-requests)))
  36. (home-page
  37. "https://github.com/michaelhelmick/lassie/tree/master")
  38. (synopsis
  39. "Lassie is a Python library for retrieving basic content from websites")
  40. (description
  41. "Lassie is a Python library for retrieving basic content from websites")
  42. (license #f)))