From 8421d406e9b246b5ce14809a408841f9f7c2537e Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Tue, 13 Jun 2023 10:33:54 -0400 Subject: [PATCH] Fix the name metadata as well It was already computed for the derivation we're going to override. It won't be recomputed again as a result of `overrideAttrs` so we recompute it and include it in the override. --- nix/pyopenssl.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/pyopenssl.nix b/nix/pyopenssl.nix index e2a23f38c..3428b0eb7 100644 --- a/nix/pyopenssl.nix +++ b/nix/pyopenssl.nix @@ -2,6 +2,7 @@ pyopenssl.overrideAttrs (old: rec { pname = "pyOpenSSL"; version = "23.2.0"; + name = "${pname}-${version}"; src = fetchPypi { inherit pname version; sha256 = "J2+TH1WkUufeppxxc+mE6ypEB85BPJGKo0tV+C+bi6w=";