python311Packages.stdlibs: init at 2022.10.9

This commit is contained in:
Fabian Affolter 2023-06-25 21:55:16 +02:00
parent c7f52b430b
commit db10672572
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, flit-core
, pythonOlder
}:
buildPythonPackage rec {
pname = "stdlibs";
version = "2022.10.9";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "omnilib";
repo = "stdlibs";
rev = "refs/tags/v${version}";
hash = "sha256-HkGZw58gQGd8mHnCP4aF6JWXxlpIIfe7B//HJiHVwA4=";
};
nativeBuildInputs = [
flit-core
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"stdlibs"
];
meta = with lib; {
description = "Overview of the Python stdlib";
homepage = "https://github.com/omnilib/stdlibs";
changelog = "https://github.com/omnilib/stdlibs/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -11794,6 +11794,8 @@ self: super: with self; {
stdlib-list = callPackage ../development/python-modules/stdlib-list { };
stdlibs = callPackage ../development/python-modules/stdlibs { };
steamodd = callPackage ../development/python-modules/steamodd { };
steamship = callPackage ../development/python-modules/steamship { };