diff options
| author | Maximilian Bosch <maximilian@mbosch.me> | 2020-06-10 19:58:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-10 19:58:54 +0200 |
| commit | a6941d2b2adc66d10ebfa4058fa481e735ee2916 (patch) | |
| tree | b6897595061098a19b766bb5fba575fd2b252ac7 | |
| parent | wireshark: Add Bluetooth (diff) | |
| parent | nix-prefetch-github: 2.3.2 -> 2.4 (diff) | |
| download | nixpkgs-a6941d2b2adc66d10ebfa4058fa481e735ee2916.tar.gz | |
Merge pull request #89362 from seppeljordan/update-nix-prefetch-github-2.4
nix-prefetch-github: 2.3.2 -> 2.4
| -rw-r--r-- | pkgs/development/python-modules/nix-prefetch-github/default.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/nix-prefetch-github/default.nix b/pkgs/development/python-modules/nix-prefetch-github/default.nix index 17e4669b6bed..56387835cc6e 100644 --- a/pkgs/development/python-modules/nix-prefetch-github/default.nix +++ b/pkgs/development/python-modules/nix-prefetch-github/default.nix @@ -9,13 +9,17 @@ buildPythonPackage rec { pname = "nix-prefetch-github"; - version = "2.3.2"; + version = "2.4"; src = fetchPypi { inherit pname version; - sha256 = "18xj618zjs13ib7f996fnl0xiqig0w48yns45nvy3xab55wximdx"; + sha256 = "sha256-PVB/cL0NVB5pHxRMjg8TLatvIvHjfCvaRWBanVHYT+E="; }; + # The tests for this package require nix and network access. That's + # why we cannot execute them inside the building process. + doCheck = false; + propagatedBuildInputs = [ attrs click |
