From db803f7da375715d63c2294b72ff6f19fc9c3f88 Mon Sep 17 00:00:00 2001 From: Ryan Sundberg Date: Sun, 2 May 2021 12:36:07 -0700 Subject: [PATCH 01/55] python-pywin32 package stub --- gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 6a6d7f4b26..13f8586e87 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25962,3 +25962,28 @@ is the cythonized version of @code{fractions.Fraction}.") "@code{pathvalidate} is a Python library to sanitize/validate strings representing paths or filenames.") (license license:expat))) + +(define-public python-pywin32-stub + (package + (name "python-pywin32") + (version "b300") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/mhammond/pywin32.git") + (commit version))) + (sha256 + (base32 + "1pyjg3q1117arzz6ncq34r39c694v2wcnmbqw68wczxlfp431d46")))) + (build-system trivial-build-system) + (arguments + `(#:builder (begin (mkdir %output) #t))) + (home-page + "https://github.com/mhammond/pywin32") + (synopsis + "Python for Win32 (pywin32) extensions, which provides access to many of the Windows APIs from Python.") + (description + "Python for Win32 (pywin32) extensions, which provides access to many of the Windows APIs from Python. This is a stub to fix guix import pypy for this package.") + (license #f))) -- 2.31.1