evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / wheel / default.nix
blob4c7a5b3dc2887d307c63049c4dd8bbf5a9eb3c11
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   flit-core,
6 }:
8 buildPythonPackage rec {
9   pname = "wheel";
10   version = "0.44.0";
11   format = "pyproject";
13   src = fetchFromGitHub {
14     owner = "pypa";
15     repo = "wheel";
16     rev = "refs/tags/${version}";
17     hash = "sha256-IFJ411H5nItR8gA5R0AYXFs3n6e1SLo2VoMOqgvDnnk=";
18     postFetch = ''
19       cd $out
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}
23     '';
24   };
26   nativeBuildInputs = [ flit-core ];
28   # No tests in archive
29   doCheck = false;
31   pythonImportsCheck = [ "wheel" ];
33   meta = with lib; {
34     homepage = "https://github.com/pypa/wheel";
35     description = "Built-package format for Python";
36     mainProgram = "wheel";
37     longDescription = ''
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.
48     '';
49     license = with licenses; [ mit ];
50     maintainers = with maintainers; [ siriobalmelli ];
51   };