python3Packages.grapheme: disable tests
This commit is contained in:
parent
ca1bd1f38f
commit
88326c18bc
@ -1,8 +1,13 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "grapheme";
|
||||
version = "0.6.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
@ -11,12 +16,18 @@ buildPythonPackage rec {
|
||||
sha256 = "1jiwc3w05c8kh22s3zk7a8km8na3plqc5zimb2qcyxxy3grbkhj4";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "grapheme" ];
|
||||
# Tests are no available on PyPI
|
||||
# https://github.com/alvinlindstam/grapheme/issues/18
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"grapheme"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python package for grapheme aware string handling";
|
||||
homepage = "https://github.com/alvinlindstam/grapheme";
|
||||
description = "A python package for grapheme aware string handling";
|
||||
maintainers = with maintainers; [ creator54 ];
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ creator54 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user