Skip to content

Commit

Permalink
python.pkgs.wheel: 0.29.0 -> 0.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Sep 11, 2017
1 parent c3887f0 commit edced8f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/bootstrapped-pip/default.nix
Expand Up @@ -3,9 +3,9 @@
let
wheel_source = fetchPypi {
pname = "wheel";
version = "0.29.0";
version = "0.30.0";
format = "wheel";
sha256 = "ea8033fc9905804e652f75474d33410a07404c1a78dd3c949a66863bd1050ebd";
sha256 = "e721e53864f084f956f40f96124a74da0631ac13fbbd1ba99e8e2b5e9cafdf64";
};
setuptools_source = fetchPypi {
pname = "setuptools";
Expand Down
9 changes: 6 additions & 3 deletions pkgs/development/python-modules/wheel/default.nix
Expand Up @@ -9,18 +9,21 @@

buildPythonPackage rec {
pname = "wheel";
version = "0.29.0";
version = "0.30.0";
name = "${pname}-${version}";

src = fetchPypi {
inherit pname version;
sha256 = "1ebb8ad7e26b448e9caa4773d2357849bf80ff9e313964bcaf79cbf0201a1648";
sha256 = "9515fe0a94e823fd90b08d22de45d7bde57c90edce705b22f5e1ecf7e1b653c8";
};

buildInputs = [ pytest pytestcov coverage ];
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" ];

Expand Down

0 comments on commit edced8f

Please sign in to comment.