@@ -14585,6 +14585,26 @@ (define-public python-pluggy
(home-page "https://pypi.org/project/pluggy/")
(license license:expat)))
+(define-public python-pluggy-1.0
+ (package
+ (inherit python-pluggy)
+ (name "python-pluggy")
+ (version "1.0.0")
+ (source (origin
+ ;; Won't build from github tarballs, throws error:
+ ;; "LookupError: setuptools-scm was unable to detect
+ ;; version for
+ ;; '/tmp/guix-build-python-pluggy-1.0-1.0.0.drv-0/source'."
+ ;;
+ ;; The PyPi version does not throw this error.
+ (method url-fetch)
+ (uri (pypi-uri "pluggy" version))
+ (sha256
+ (base32
+ "0n8iadlas2z1b4h0fc73b043c7iwfvx9rgvqm1azjmffmhxkf922"))))
+ (inputs (list python python-pypa-build python-wheel))
+ (native-inputs (list python-pytest python-setuptools-scm))))
+
(define-public python-plumbum
(package
(name "python-plumbum")