Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / stdlibs / default.nix
blob677d282f065366f0720133011eb337532e620296
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , flit-core
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "stdlibs";
10   version = "2024.1.28";
11   format = "pyproject";
13   disabled = pythonOlder "3.8";
15   src = fetchFromGitHub {
16     owner = "omnilib";
17     repo = "stdlibs";
18     rev = "refs/tags/v${version}";
19     hash = "sha256-xf46ih7viVUKNIT1tLs5MQPNjNtQlQ2N9BJIGPt4Srk=";
20   };
22   nativeBuildInputs = [
23     flit-core
24   ];
26   # Module has no tests
27   doCheck = false;
29   pythonImportsCheck = [
30     "stdlibs"
31   ];
33   meta = with lib; {
34     description = "Overview of the Python stdlib";
35     homepage = "https://github.com/omnilib/stdlibs";
36     changelog = "https://github.com/omnilib/stdlibs/blob/${version}/CHANGELOG.md";
37     license = licenses.mit;
38     maintainers = with maintainers; [ fab ];
39   };