Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python.pkgs.wheel: 0.29.0 -> 0.30.0

+8 -5
+2 -2
pkgs/development/python-modules/bootstrapped-pip/default.nix
··· 3 let 4 wheel_source = fetchPypi { 5 pname = "wheel"; 6 - version = "0.29.0"; 7 format = "wheel"; 8 - sha256 = "ea8033fc9905804e652f75474d33410a07404c1a78dd3c949a66863bd1050ebd"; 9 }; 10 setuptools_source = fetchPypi { 11 pname = "setuptools";
··· 3 let 4 wheel_source = fetchPypi { 5 pname = "wheel"; 6 + version = "0.30.0"; 7 format = "wheel"; 8 + sha256 = "e721e53864f084f956f40f96124a74da0631ac13fbbd1ba99e8e2b5e9cafdf64"; 9 }; 10 setuptools_source = fetchPypi { 11 pname = "setuptools";
+6 -3
pkgs/development/python-modules/wheel/default.nix
··· 9 10 buildPythonPackage 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" ];
··· 9 10 buildPythonPackage rec { 11 pname = "wheel"; 12 + version = "0.30.0"; 13 name = "${pname}-${version}"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + sha256 = "9515fe0a94e823fd90b08d22de45d7bde57c90edce705b22f5e1ecf7e1b653c8"; 18 }; 19 20 + checkInputs = [ pytest pytestcov coverage ]; 21 22 propagatedBuildInputs = [ jsonschema ]; 23 + 24 + # No tests in archive 25 + doCheck = false; 26 27 # We add this flag to ignore the copy installed by bootstrapped-pip 28 installFlags = [ "--ignore-installed" ];