about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-08-24 12:14:29 +0200
committerJon <jonringer@users.noreply.github.com>2020-08-30 10:17:23 -0700
commit5c000c1a03fd15ffb03cf82cc64ab141b00b897d (patch)
tree760e96290e814634e7eeddd7a37e1669d5f49066 /pkgs/development
parentc83ebad684fbca9ce318c675483df4c45adb8415 (diff)
pythonPackages.unicodedata2: init at 13.0.0-2
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/unicodedata2/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/unicodedata2/default.nix b/pkgs/development/python-modules/unicodedata2/default.nix
new file mode 100644
index 0000000000000..e36f0f7b03cb8
--- /dev/null
+++ b/pkgs/development/python-modules/unicodedata2/default.nix
@@ -0,0 +1,23 @@
+{ 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 = "";
+    homepage = "http://github.com/mikekap/unicodedata2";
+    license = licenses.asl20;
+    maintainers = [ maintainers.sternenseemann ];
+  };
+}