Guest User

Untitled

a guest
Apr 7th, 2023
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. (define-module (gnu packages pyobject)
  2. #:use-module (guix packages)
  3. #:use-module (guix download)
  4. #:use-module (guix build-system python)
  5. #:use-module (guix licenses)
  6. #:use-module (gnu packages gawk)
  7. )
  8.  
  9. (define-public pyobject
  10. (package
  11. (name "python-pyobject")
  12. (version "1.2.1")
  13. (source (origin
  14. (method url-fetch)
  15. (uri (pypi-uri "pyobject" version))
  16. (sha256
  17. (base32
  18. "0gnv2j99qzbri3zg6cfg0chg1jdb2ai5wlkcj7gjnmdkrr2xgpsq"))))
  19. (build-system python-build-system)
  20. (home-page "https://github.com/qfcy/Python/tree/main/pyobject")
  21. (synopsis
  22. "tool of operating internal python object with some submodules.")
  23. (description
  24. " some submodules.")
  25. (license #f))
  26.  
  27.  
  28. ) pyobject
  29.  
  30.  
Advertisement
Add Comment
Please, Sign In to add comment