depot/third_party/nixpkgs/pkgs/development/python-modules/unicodedata2/default.nix
Default email 01ed8ef136 Project import generated by Copybara.
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
2022-11-21 19:40:18 +02:00

22 lines
557 B
Nix

{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, isPy27 }:
buildPythonPackage rec {
pname = "unicodedata2";
version = "15.0.0";
disabled = isPy27;
src = fetchPypi {
inherit version pname;
sha256 = "0bcgls7m2zndpd8whgznnd5908jbsa50si2bh88wsn0agcznhv7d";
};
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 ];
};
}