My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/unicodedata2/default.nix

22 lines
557 B

{ 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 ];
};
}