evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / stdlibs / default.nix
blobfb9c0f54479f41bcd2cbc49056cb495f9ef9085e
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   flit-core,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "stdlibs";
11   version = "2024.5.15";
12   pyproject = true;
14   disabled = pythonOlder "3.8";
16   src = fetchFromGitHub {
17     owner = "omnilib";
18     repo = "stdlibs";
19     rev = "refs/tags/v${version}";
20     hash = "sha256-DthHvL5x3HVwACLnxeyuoC0hb8OokabODircEY9eEhE=";
21   };
23   build-system = [ flit-core ];
25   # Module has no tests
26   doCheck = false;
28   pythonImportsCheck = [ "stdlibs" ];
30   meta = with lib; {
31     description = "Overview of the Python stdlib";
32     homepage = "https://github.com/omnilib/stdlibs";
33     changelog = "https://github.com/omnilib/stdlibs/blob/${version}/CHANGELOG.md";
34     license = licenses.mit;
35     maintainers = with maintainers; [ fab ];
36   };