mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
pythonPackages.unicodedata2: init at 13.0.0-2
This commit is contained in:
parent
c83ebad684
commit
5c000c1a03
23
pkgs/development/python-modules/unicodedata2/default.nix
Normal file
23
pkgs/development/python-modules/unicodedata2/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user