python3Packages.stdlib-list: 0.11.1 -> 0.12.0 (#457486)
This commit is contained in:
@@ -2,23 +2,21 @@
|
|||||||
lib,
|
lib,
|
||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchPypi,
|
fetchPypi,
|
||||||
|
|
||||||
# build-system
|
|
||||||
flit-core,
|
flit-core,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "stdlib-list";
|
pname = "stdlib-list";
|
||||||
version = "0.11.1";
|
version = "0.12.0";
|
||||||
format = "pyproject";
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
pname = "stdlib_list";
|
pname = "stdlib_list";
|
||||||
inherit version;
|
inherit version;
|
||||||
hash = "sha256-levR1z2pMzu6A8zAl/W6wF46oD5oIqDAKQ+H4QR/GFc=";
|
hash = "sha256-UXgk8n7onlkdiufB3Z/zT2curlDuiG6jG7iBbXdTVnU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ flit-core ];
|
build-system = [ flit-core ];
|
||||||
|
|
||||||
pythonImportsCheck = [ "stdlib_list" ];
|
pythonImportsCheck = [ "stdlib_list" ];
|
||||||
|
|
||||||
@@ -26,9 +24,9 @@ buildPythonPackage rec {
|
|||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
changelog = "https://github.com/pypi/stdlib-list/releases/tag/v${version}";
|
|
||||||
description = "List of Python Standard Libraries";
|
description = "List of Python Standard Libraries";
|
||||||
homepage = "https://github.com/jackmaney/python-stdlib-list";
|
homepage = "https://github.com/jackmaney/python-stdlib-list";
|
||||||
|
changelog = "https://github.com/pypi/stdlib-list/releases/tag/v${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ ];
|
maintainers = [ ];
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user