3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.grapheme: init at 0.6.0

This commit is contained in:
creator54 2022-01-11 19:27:23 +05:30
parent c32c39d6f3
commit ca1bd1f38f
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
buildPythonPackage rec {
pname = "grapheme";
version = "0.6.0";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "1jiwc3w05c8kh22s3zk7a8km8na3plqc5zimb2qcyxxy3grbkhj4";
};
pythonImportsCheck = [ "grapheme" ];
meta = with lib; {
homepage = "https://github.com/alvinlindstam/grapheme";
description = "A python package for grapheme aware string handling";
maintainers = with maintainers; [ creator54 ];
license = licenses.mit;
};
}

View file

@ -3425,6 +3425,8 @@ in {
grandalf = callPackage ../development/python-modules/grandalf { };
grapheme = callPackage ../development/python-modules/grapheme { };
graphite_api = callPackage ../development/python-modules/graphite-api { };
graphite_beacon = callPackage ../development/python-modules/graphite_beacon { };