aboutsummaryrefslogtreecommitdiff
path: root/dev-python/multipart/multipart-0.2.4.ebuild
blob: 0d128827f9564df1b3eb0acbd517b0ebe18ad947 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..11} pypy3 )

inherit distutils-r1 pypi

DESCRIPTION="Multipart parser for Python 3"
HOMEPAGE="https://github.com/defnull/multipart"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"

distutils_enable_tests unittest

PATCHES=(
	# Merged in master but no release since, so backporting it
	"${FILESDIR}/multipart-urlencoded-test.patch"
)

src_test() {
	cd "${S}/test" || die
	distutils-r1_src_test
}