diff options
| author | Charlie Hanley <charles.scott.hanley+git@gmail.com> | 2021-09-26 16:06:59 -0400 |
|---|---|---|
| committer | Charlie Hanley <charles.scott.hanley+git@gmail.com> | 2021-09-26 16:06:59 -0400 |
| commit | cf28ad7e6f7cd14e489c5326a54117827f7cf89d (patch) | |
| tree | 82489c4cf7c7c05e2608f3ab343e08017c9ad809 /pkgs/development/python-modules/python3-application | |
| parent | 76a4a78d099ce19221a1564fbb3b96315157c21d (diff) | |
python3Packages.python3-application: refactor
Don't interpolate a variable into the URL string because a) if the
variable changes but the hash does not, erroneous cached files may be
used for the FOD; and b) it is convenient for those reading to have the
whole URL so they can open it.
Diffstat (limited to 'pkgs/development/python-modules/python3-application')
| -rw-r--r-- | pkgs/development/python-modules/python3-application/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/python3-application/default.nix b/pkgs/development/python-modules/python3-application/default.nix index cddb354a5db2..51794d096d18 100644 --- a/pkgs/development/python-modules/python3-application/default.nix +++ b/pkgs/development/python-modules/python3-application/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { # Apply bugfix commit that is not yet part of a release (fetchpatch { name = "fix-time-import.patch"; - url = "https://github.com/AGProjects/${pname}/commit/695f7d769e69c84e065872ffb403157d0af282fd.patch"; + url = "https://github.com/AGProjects/python3-application/commit/695f7d769e69c84e065872ffb403157d0af282fd.patch"; sha256 = "sha256-MGs8uUIFXkPXStOn5oCNNEMVmcKrq8YPl8Xvl3OTOUM="; }) ]; |
