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:
parent
1f24ebb428
commit
fae66ed86c
1 changed files with 4 additions and 3 deletions
|
@ -9,14 +9,14 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "installer";
|
pname = "installer";
|
||||||
version = "0.6.0";
|
version = "0.7.0";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "pradyunsg";
|
owner = "pradyunsg";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-IXznSrc/4LopgZDGFSC6cAOCbts+siKpdl5SvN1FFvA=";
|
hash = "sha256-thHghU+1Alpay5r9Dc3v7ATRFfYKV8l9qR0nbGOOX/A=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ flit-core ];
|
nativeBuildInputs = [ flit-core ];
|
||||||
|
@ -27,8 +27,9 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
changelog = "https://github.com/pypa/installer/blob/${src.rev}/docs/changelog.md";
|
||||||
homepage = "https://github.com/pradyunsg/installer";
|
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;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ cpcloud fridh ];
|
maintainers = with maintainers; [ cpcloud fridh ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue