python-mypy-extensions.scm 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. (define-module (python-mypy-extensions)
  2. #:use-module (guix packages)
  3. #:use-module (gnu packages python-xyz)
  4. #:use-module (gnu packages sphinx)
  5. #:use-module (gnu packages check)
  6. #:use-module (guix utils)
  7. #:use-module (gnu packages python)
  8. #:use-module (guix download)
  9. #:use-module (guix licenses)
  10. #:use-module (guix build-system python))
  11. (define-public python-mypy-extensions
  12. (package
  13. (name "python-mypy-extensions")
  14. (version "0.4.3")
  15. (source
  16. (origin
  17. (method url-fetch)
  18. (uri (pypi-uri "mypy-extensions" version))
  19. (sha256
  20. (base32
  21. "1a04qsk8hd1lqns8w1j7cr0vmvbhg450di5k1i16kqxkbf7q30id"))))
  22. (build-system python-build-system)
  23. ;;(propagated-inputs
  24. ;; `(("python-typing" ,python-typing)))
  25. (home-page
  26. "https://github.com/python/mypy_extensions")
  27. (synopsis
  28. "Experimental type system extensions for programs checked with the mypy typechecker.")
  29. (description
  30. "Experimental type system extensions for programs checked with the mypy typechecker.")
  31. (license #f)))
  32. python-mypy-extensions