python310Packages.pathvalidate: update disabled
This commit is contained in:
parent
8bba8d2e12
commit
4081902723
1 changed files with 12 additions and 4 deletions
|
@ -1,19 +1,27 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pathvalidate";
|
||||
version = "2.5.2";
|
||||
disabled = pythonOlder "3.5";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-X/V9D6vl7Lek8eSVe/61rYq1q0wPpx95xrvCS9m30U0=";
|
||||
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";
|
||||
|
|
Loading…
Reference in a new issue