{ lib , buildPythonPackage , fetchPypi , pytest , pytestcov , coverage , jsonschema }: buildPythonPackage rec { pname = "wheel"; version = "0.33.0"; src = fetchPypi { inherit pname version; sha256 = "12363e6df5678ecf9daf8429f06f97e7106e701405898f24318ce7f0b79c611a"; }; checkInputs = [ pytest pytestcov coverage ]; propagatedBuildInputs = [ jsonschema ]; # No tests in archive doCheck = false; # We add this flag to ignore the copy installed by bootstrapped-pip installFlags = [ "--ignore-installed" ]; meta = { description = "A built-package format for Python"; license = with lib.licenses; [ mit ]; homepage = https://bitbucket.org/pypa/wheel/; }; }