34 lines
701 B
Nix
34 lines
701 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchPypi
|
||
|
, pythonOlder
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "grapheme";
|
||
|
version = "0.6.0";
|
||
|
format = "setuptools";
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "1jiwc3w05c8kh22s3zk7a8km8na3plqc5zimb2qcyxxy3grbkhj4";
|
||
|
};
|
||
|
|
||
|
# 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";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ creator54 ];
|
||
|
};
|
||
|
}
|