Commit 1604ff76 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python3Packages.pkg-about: 2.0.1 -> 2.0.12

https://github.com/karpierz/pkg_about/blob/2.0.12/CHANGES.rst

This commit was automatically generated using update-python-libraries.
parent 42cd872f
Loading
Loading
Loading
Loading
+9 −3
Original line number Diff line number Diff line
@@ -8,12 +8,14 @@
  importlib-resources,
  setuptools,
  packaging,
  typing-extensions,
  appdirs,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "pkg-about";
  version = "2.0.1";
  version = "2.0.12";
  pyproject = true;

  disabled = pythonOlder "3.11";
@@ -21,7 +23,7 @@ buildPythonPackage rec {
  src = fetchPypi {
    pname = "pkg_about";
    inherit version;
    hash = "sha256-hgQOmp+R4ZWbq8hKRUQQzMO4hl/pHAGiJK9c4lxEkaI=";
    hash = "sha256-WFhOMeBvAPaU/AIGoGlSziJ633TrGBgOcbfBxAm3H8E=";
  };

  # tox is listed in build requirements but not actually used to build
@@ -41,9 +43,13 @@ buildPythonPackage rec {
    importlib-resources
    packaging
    setuptools
    typing-extensions
  ];

  nativeCheckInputs = [ pytestCheckHook ];
  nativeCheckInputs = [
    appdirs
    pytestCheckHook
  ];

  pythonImportsCheck = [ "pkg_about" ];