pythonPackages.unicodedata2: init at 13.0.0-2

This commit is contained in:
sternenseemann 2020-08-24 12:14:29 +02:00 committed by Jon
parent c83ebad684
commit 5c000c1a03
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchFromGitHub, pytest }:
buildPythonPackage rec {
pname = "unicodedata2";
version = "13.0.0-2";
src = fetchFromGitHub {
owner = "mikekap";
repo = pname;
rev = version;
sha256 = "0p9brbiwyg98q52y0gfyps52xv57fwqfpq0mn18p1xc1imip3h2b";
};
checkInputs = [ pytest ];
checkPhase = "pytest tests";
meta = with lib; {
description = "";
homepage = "http://github.com/mikekap/unicodedata2";
license = licenses.asl20;
maintainers = [ maintainers.sternenseemann ];
};
}

View file

@ -6825,6 +6825,8 @@ in {
unicodecsv = callPackage ../development/python-modules/unicodecsv { };
unicodedata2 = callPackage ../development/python-modules/unicodedata2 { };
unicode-slugify = callPackage ../development/python-modules/unicode-slugify { };
unidiff = callPackage ../development/python-modules/unidiff { };