8 buildPythonPackage rec {
13 src = fetchFromGitHub {
16 rev = "refs/tags/${version}";
17 hash = "sha256-IFJ411H5nItR8gA5R0AYXFs3n6e1SLo2VoMOqgvDnnk=";
20 mv tests/testdata/unicode.dist/unicodedist/åäö_日本語.py \
21 tests/testdata/unicode.dist/unicodedist/æɐø_日本價.py
22 patch -p1 < ${./0001-tests-Rename-a-a-o-_-.py-_-.py.patch}
26 nativeBuildInputs = [ flit-core ];
31 pythonImportsCheck = [ "wheel" ];
34 homepage = "https://github.com/pypa/wheel";
35 description = "Built-package format for Python";
36 mainProgram = "wheel";
38 This library is the reference implementation of the Python wheel packaging standard,
39 as defined in PEP 427.
41 It has two different roles:
43 - A setuptools extension for building wheels that provides the bdist_wheel setuptools command
44 - A command line tool for working with wheel files
46 It should be noted that wheel is not intended to be used as a library,
47 and as such there is no stable, public API.
49 license = with licenses; [ mit ];
50 maintainers = with maintainers; [ siriobalmelli ];