8 buildPythonPackage rec {
13 src = fetchFromGitHub {
17 sha256 = "sha256-8lK2UvqBIxUYm6IOuT+Jk71wYbEEjvI7typS3749N9g=";
18 name = "${pname}-${version}-source";
28 pythonImportsCheck = [ "wheel" ];
30 # We add this flag to ignore the copy installed by bootstrapped-pip
31 pipInstallFlags = [ "--ignore-installed" ];
34 homepage = "https://bitbucket.org/pypa/wheel/";
35 description = "A built-package format for Python";
37 This library is the reference implementation of the Python wheel packaging standard,
38 as defined in PEP 427.
40 It has two different roles:
42 - A setuptools extension for building wheels that provides the bdist_wheel setuptools command
43 - A command line tool for working with wheel files
45 It should be noted that wheel is not intended to be used as a library,
46 and as such there is no stable, public API.
48 license = with licenses; [ mit ];
49 maintainers = with maintainers; [ siriobalmelli ];