python310Packages.installer: 0.6.0 -> 0.7.0

Diff: https://github.com/pradyunsg/installer/compare/0.6.0...0.7.0

Changelog: https://github.com/pypa/installer/blob/0.7.0/docs/changelog.md
This commit is contained in:
Robert Schütz 2023-03-20 23:33:42 -07:00
parent 1f24ebb428
commit fae66ed86c

View File

@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "installer";
version = "0.6.0";
version = "0.7.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "pradyunsg";
repo = pname;
rev = version;
hash = "sha256-IXznSrc/4LopgZDGFSC6cAOCbts+siKpdl5SvN1FFvA=";
hash = "sha256-thHghU+1Alpay5r9Dc3v7ATRFfYKV8l9qR0nbGOOX/A=";
};
nativeBuildInputs = [ flit-core ];
@ -27,8 +27,9 @@ buildPythonPackage rec {
];
meta = with lib; {
changelog = "https://github.com/pypa/installer/blob/${src.rev}/docs/changelog.md";
homepage = "https://github.com/pradyunsg/installer";
description = "A low-level library for installing a Python package from a wheel distribution.";
description = "A low-level library for installing a Python package from a wheel distribution";
license = licenses.mit;
maintainers = with maintainers; [ cpcloud fridh ];
};