8 buildPythonPackage rec {
13 src = fetchFromGitHub {
17 sha256 = "sha256-JlTmUPY3yo/uROyd3nW1dJa23zbLhgQTwcmqZkPOrHs=";
18 name = "${pname}-${version}-source";
21 mv tests/testdata/unicode.dist/unicodedist/åäö_日本語.py \
22 tests/testdata/unicode.dist/unicodedist/æɐø_日本價.py
23 patch -p1 < ${./0001-tests-Rename-a-a-o-_-.py-_-.py.patch}
34 pythonImportsCheck = [ "wheel" ];
36 # We add this flag to ignore the copy installed by bootstrapped-pip
37 pipInstallFlags = [ "--ignore-installed" ];
40 homepage = "https://github.com/pypa/wheel";
41 description = "Built-package format for Python";
43 This library is the reference implementation of the Python wheel packaging standard,
44 as defined in PEP 427.
46 It has two different roles:
48 - A setuptools extension for building wheels that provides the bdist_wheel setuptools command
49 - A command line tool for working with wheel files
51 It should be noted that wheel is not intended to be used as a library,
52 and as such there is no stable, public API.
54 license = with licenses; [ mit ];
55 maintainers = with maintainers; [ siriobalmelli ];