forked from mirrors/nixpkgs
python3Packages.grapheme: init at 0.6.0
This commit is contained in:
parent
c32c39d6f3
commit
ca1bd1f38f
22
pkgs/development/python-modules/grapheme/default.nix
Normal file
22
pkgs/development/python-modules/grapheme/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue