mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
23 lines
557 B
Nix
23 lines
557 B
Nix
{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, isPy27 }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "unicodedata2";
|
|
version = "14.0.0";
|
|
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit version pname;
|
|
sha256 = "110nnvh02ssp92xbmswy39aa186jrmb7m41x4220wigl8c0dzxs1";
|
|
};
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
description = "Backport and updates for the unicodedata module";
|
|
homepage = "https://github.com/mikekap/unicodedata2";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
};
|
|
}
|