linux_6_1: 6.1.117 -> 6.1.118
[NixPkgs.git] / pkgs / development / python2-modules / wheel / default.nix
blob5831e234fe1e52e23bc1b874ec850f48d3b8ecd5
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , bootstrapped-pip
5 , setuptools
6 }:
8 buildPythonPackage rec {
9   pname = "wheel";
10   version = "0.37.1";
11   format = "other";
13   src = fetchFromGitHub {
14     owner = "pypa";
15     repo = pname;
16     rev = version;
17     sha256 = "sha256-JlTmUPY3yo/uROyd3nW1dJa23zbLhgQTwcmqZkPOrHs=";
18     name = "${pname}-${version}-source";
19     postFetch = ''
20       cd $out
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}
24     '';
25   };
27   nativeBuildInputs = [
28     bootstrapped-pip
29     setuptools
30   ];
32   # No tests in archive
33   doCheck = false;
34   pythonImportsCheck = [ "wheel" ];
36   # We add this flag to ignore the copy installed by bootstrapped-pip
37   pipInstallFlags = [ "--ignore-installed" ];
39   meta = with lib; {
40     homepage = "https://github.com/pypa/wheel";
41     description = "Built-package format for Python";
42     longDescription = ''
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.
53     '';
54     license = with licenses; [ mit ];
55     maintainers = with maintainers; [ siriobalmelli ];
56   };