depot/third_party/nixpkgs/pkgs/development/python-modules/unicodedata2/default.nix
Default email 58f8944c92 Project import generated by Copybara.
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
2020-09-24 23:45:31 -05:00

23 lines
592 B
Nix

{ 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 = "Backport and updates for the unicodedata module";
homepage = "http://github.com/mikekap/unicodedata2";
license = licenses.asl20;
maintainers = [ maintainers.sternenseemann ];
};
}