nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 22 lines 557 B view raw
1{ lib, buildPythonPackage, fetchPypi, pytestCheckHook, isPy27 }: 2 3buildPythonPackage rec { 4 pname = "unicodedata2"; 5 version = "14.0.0"; 6 7 disabled = isPy27; 8 9 src = fetchPypi { 10 inherit version pname; 11 sha256 = "110nnvh02ssp92xbmswy39aa186jrmb7m41x4220wigl8c0dzxs1"; 12 }; 13 14 checkInputs = [ pytestCheckHook ]; 15 16 meta = with lib; { 17 description = "Backport and updates for the unicodedata module"; 18 homepage = "https://github.com/mikekap/unicodedata2"; 19 license = licenses.asl20; 20 maintainers = [ maintainers.sternenseemann ]; 21 }; 22}