mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
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:
commit
70da4f91e6
@ -1,19 +1,27 @@
|
|||||||
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pathvalidate";
|
pname = "pathvalidate";
|
||||||
version = "2.5.1";
|
version = "2.5.2";
|
||||||
disabled = pythonOlder "3.5";
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-u8J+ZTM1q6eTWireIpliLnapSHvJAEzc8UQc6NL/SlQ=";
|
hash = "sha256-X/V9D6vl7Lek8eSVe/61rYq1q0wPpx95xrvCS9m30U0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Requires `pytest-md-report`, causing infinite recursion.
|
# Requires `pytest-md-report`, causing infinite recursion.
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
pythonImportsCheck = [ "pathvalidate" ];
|
pythonImportsCheck = [
|
||||||
|
"pathvalidate"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A Python library to sanitize/validate a string such as filenames/file-paths/etc";
|
description = "A Python library to sanitize/validate a string such as filenames/file-paths/etc";
|
||||||
|
Loading…
Reference in New Issue
Block a user