mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
a42b3557ab
Diff: https://github.com/omnilib/stdlibs/compare/refs/tags/v2023.12.15...v2024.1.28 Changelog: https://github.com/omnilib/stdlibs/blob/2024.1.28/CHANGELOG.md
41 lines
803 B
Nix
41 lines
803 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, flit-core
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "stdlibs";
|
|
version = "2024.1.28";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "omnilib";
|
|
repo = "stdlibs";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-xf46ih7viVUKNIT1tLs5MQPNjNtQlQ2N9BJIGPt4Srk=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|