python3-dirty-equals_0.8.0.bb 960 B

123456789101112131415161718192021222324252627
  1. SUMMARY = "Doing dirty (but extremely useful) things with equals."
  2. DESCRIPTION = "dirty-equals is a python library that (mis)uses the \
  3. __eq__ method to make python code (generally unit tests) more \
  4. declarative and therefore easier to read and write.\
  5. \
  6. dirty-equals can be used in whatever context you like, but it comes \
  7. into its own when writing unit tests for applications where you're \
  8. commonly checking the response to API calls and the contents of a database."
  9. HOMEPAGE = "https://github.com/samuelcolvin/dirty-equals"
  10. LICENSE = "MIT"
  11. LIC_FILES_CHKSUM = "file://LICENSE;md5=ab599c188b4a314d2856b3a55030c75c"
  12. SRC_URI[sha256sum] = "798db3b9481b9a5024c0e520946507676ed2f0c65317d3e95bdce1a01657cf60"
  13. S = "${WORKDIR}/dirty_equals-${PV}"
  14. inherit pypi python_hatchling
  15. PYPI_PACKAGE = "dirty_equals"
  16. UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
  17. RDEPENDS:${PN} += " \
  18. python3-pytz \
  19. python3-core \
  20. python3-json \
  21. python3-netclient \
  22. "