Unverified Commit 2546ce3b authored by Silvan Mosberger's avatar Silvan Mosberger Committed by GitHub
Browse files

python3Packages.types-six: init at 1.17.0.20250515 (#417881)

parents aa1bdb48 d6afa5b5
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
}:

buildPythonPackage rec {
  pname = "types-six";
  version = "1.17.0.20250515";
  pyproject = true;

  src = fetchPypi {
    pname = "types_six";
    inherit version;
    hash = "sha256-9PfwOYy3kwTog5czbmQrFelvvqz1uW12Jdo2awadLRg=";
  };

  build-system = [ setuptools ];

  # Module doesn't have tests
  doCheck = false;

  pythonImportsCheck = [
    "six-stubs"
  ];

  meta = {
    description = "Typing stubs for six";
    homepage = "https://github.com/python/typeshed";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ YorikSar ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -19306,6 +19306,8 @@ self: super: with self; {
  types-setuptools = callPackage ../development/python-modules/types-setuptools { };
  types-six = callPackage ../development/python-modules/types-six { };
  types-tabulate = callPackage ../development/python-modules/types-tabulate { };
  types-toml = callPackage ../development/python-modules/types-toml { };