Merge pull request #187669 from r-ryantm/auto-update/python3.10-pathvalidate

python310Packages.pathvalidate: 2.5.1 -> 2.5.2
This commit is contained in:
Fabian Affolter 2022-08-21 12:43:17 +02:00 committed by GitHub
commit 70da4f91e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,19 +1,27 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "pathvalidate";
version = "2.5.1";
disabled = pythonOlder "3.5";
version = "2.5.2";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-u8J+ZTM1q6eTWireIpliLnapSHvJAEzc8UQc6NL/SlQ=";
hash = "sha256-X/V9D6vl7Lek8eSVe/61rYq1q0wPpx95xrvCS9m30U0=";
};
# Requires `pytest-md-report`, causing infinite recursion.
doCheck = false;
pythonImportsCheck = [ "pathvalidate" ];
pythonImportsCheck = [
"pathvalidate"
];
meta = with lib; {
description = "A Python library to sanitize/validate a string such as filenames/file-paths/etc";