1{ lib
2, buildPythonPackage
3, fetchPypi
4, pytest
5, pytestcov
6, coverage
7, jsonschema
8}:
9
10buildPythonPackage rec {
11 pname = "wheel";
12 version = "0.29.0";
13 name = "${pname}-${version}";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "1ebb8ad7e26b448e9caa4773d2357849bf80ff9e313964bcaf79cbf0201a1648";
18 };
19
20 buildInputs = [ pytest pytestcov coverage ];
21
22 propagatedBuildInputs = [ jsonschema ];
23
24 # We add this flag to ignore the copy installed by bootstrapped-pip
25 installFlags = [ "--ignore-installed" ];
26
27 meta = {
28 description = "A built-package format for Python";
29 license = with lib.licenses; [ mit ];
30 homepage = https://bitbucket.org/pypa/wheel/;
31 };
32}