diff options
| author | Ricardo M. Correia <rcorreia@wizy.org> | 2021-06-02 16:54:27 +0200 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2021-07-17 07:06:21 +0000 |
| commit | 61ed04ae69cef94e2932666d7388060b3d879dfc (patch) | |
| tree | a7b92d81eeba0e83c476b070e3718cdccabe227a | |
| parent | vscodium: 1.58.1 -> 1.58.2 (diff) | |
| download | nixpkgs-61ed04ae69cef94e2932666d7388060b3d879dfc.tar.gz | |
python2Packages.convertdate: fix hashorigin/backport-125387-to-release-21.05
This derivation was introduced in commit
e1d60a05af55daadaeaf85d14869459b9b8c9635 with version 2.2.2 but the
sha256 hash in that commit actually corresponded to version 2.2.1,
as you can see below:
$ nix-prefetch-github --rev "v2.2.1" fitnr convertdate | jq '.sha256'
"1xgi7x9b9kxm0q51bqnmwdm5lp8vwhx5yk4d1b23r37spz9dbhw5"
(cherry picked from commit 3e84c7ea0d3872e660ba0f3a8c2a0971e7df5dd6)
| -rw-r--r-- | pkgs/development/python-modules/convertdate/2.2.x.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/convertdate/2.2.x.nix b/pkgs/development/python-modules/convertdate/2.2.x.nix index d67f4c5a3449..1145a61ca4f0 100644 --- a/pkgs/development/python-modules/convertdate/2.2.x.nix +++ b/pkgs/development/python-modules/convertdate/2.2.x.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { owner = "fitnr"; repo = pname; rev = "v${version}"; - sha256 = "1xgi7x9b9kxm0q51bqnmwdm5lp8vwhx5yk4d1b23r37spz9dbhw5"; + sha256 = "07x1j6jgkmrzdpv2lhpp4n16621mpmlylvwdwsggdjivhzvc3x9q"; }; propagatedBuildInputs = [ |
