Advertisement
Guest User

Guix Python Developement Environment

a guest
Jun 2nd, 2019
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. (use-modules (guix packages)
  2. (guix licenses)
  3. (guix build-system python)
  4. (gnu packages)
  5. (gnu packages version-control)
  6. (gnu packages python))
  7.  
  8. (package
  9. (name "python project")
  10. (version "1.0")
  11. (source #f)
  12. (build-system python-build-system)
  13. (native-inputs
  14. `(("python-pytest" ,python-pytest)))
  15. (inputs
  16. `(("python" ,python)))
  17. (synopsis "A cool python project")
  18. (description "This software does some cool stuff, trust me.")
  19. (home-page "https://example.com")
  20. (license expat))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement