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