Unverified Commit deb1c8ff authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.stdlib-list: modernize

parent f0a070e4
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -2,15 +2,13 @@
  lib,
  buildPythonPackage,
  fetchPypi,

  # build-system
  flit-core,
}:

buildPythonPackage rec {
  pname = "stdlib-list";
  version = "0.12.0";
  format = "pyproject";
  pyproject = true;

  src = fetchPypi {
    pname = "stdlib_list";
@@ -18,7 +16,7 @@ buildPythonPackage rec {
    hash = "sha256-UXgk8n7onlkdiufB3Z/zT2curlDuiG6jG7iBbXdTVnU=";
  };

  nativeBuildInputs = [ flit-core ];
  build-system = [ flit-core ];

  pythonImportsCheck = [ "stdlib_list" ];

@@ -26,9 +24,9 @@ buildPythonPackage rec {
  doCheck = false;

  meta = with lib; {
    changelog = "https://github.com/pypi/stdlib-list/releases/tag/v${version}";
    description = "List of Python Standard Libraries";
    homepage = "https://github.com/jackmaney/python-stdlib-list";
    changelog = "https://github.com/pypi/stdlib-list/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = [ ];
  };