Commit f50f8abc authored by Sarah Clark's avatar Sarah Clark
Browse files

python3Packages.m2crypto: apply finalAttrs fix

parent 3d4d623d
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -10,13 +10,13 @@
  swig,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "m2crypto";
  version = "0.45.1";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    inherit (finalAttrs) pname version;
    hash = "sha256-0PyBqIKO2/QwhDKzBAvwa7JrrZWruefUaQthGFUeduw=";
  };

@@ -47,8 +47,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python crypto and SSL toolkit";
    homepage = "https://gitlab.com/m2crypto/m2crypto";
    changelog = "https://gitlab.com/m2crypto/m2crypto/-/blob/${version}/CHANGES";
    changelog = "https://gitlab.com/m2crypto/m2crypto/-/blob/${finalAttrs.version}/CHANGES";
    license = lib.licenses.mit;
    maintainers = [ ];
  };
}
})