about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dawg-python
diff options
context:
space:
mode:
authorDaniƫl de Kok <me@danieldk.eu>2021-05-16 09:02:44 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-17 23:29:28 -0700
commitafc534af9fa35e3b0e420e1e5ee04065c355d1ad (patch)
tree95a5b1602aa8d2c9a975686811b4c3574090ef5a /pkgs/development/python-modules/dawg-python
parentbf639f5226f4fb516e6038726d5c3bd00799bd06 (diff)
downloadnixlib-afc534af9fa35e3b0e420e1e5ee04065c355d1ad.tar
nixlib-afc534af9fa35e3b0e420e1e5ee04065c355d1ad.tar.gz
nixlib-afc534af9fa35e3b0e420e1e5ee04065c355d1ad.tar.bz2
nixlib-afc534af9fa35e3b0e420e1e5ee04065c355d1ad.tar.lz
nixlib-afc534af9fa35e3b0e420e1e5ee04065c355d1ad.tar.xz
nixlib-afc534af9fa35e3b0e420e1e5ee04065c355d1ad.tar.zst
nixlib-afc534af9fa35e3b0e420e1e5ee04065c355d1ad.zip
dawg-python: init at 0.7.2
This is a pure Python reader for DAWGs created by dawgdic C++ library
or DAWG Python extension.
Diffstat (limited to 'pkgs/development/python-modules/dawg-python')
-rw-r--r--pkgs/development/python-modules/dawg-python/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/dawg-python/default.nix b/pkgs/development/python-modules/dawg-python/default.nix
new file mode 100644
index 000000000000..ba9c298a2e82
--- /dev/null
+++ b/pkgs/development/python-modules/dawg-python/default.nix
@@ -0,0 +1,24 @@
+{ lib
+, fetchPypi
+, buildPythonPackage
+}:
+
+buildPythonPackage rec {
+  pname = "dawg-python";
+  version = "0.7.2";
+
+  src = fetchPypi {
+    inherit version;
+    pname = "DAWG-Python";
+    hash = "sha256-Sl4yhuYmHMoC8gXP1VFqerEBkPowxRwo00WAj1leNCE=";
+  };
+
+  pythonImportsCheck = [ "dawg_python" ];
+
+  meta = with lib; {
+    description = "Pure Python reader for DAWGs created by dawgdic C++ library or DAWG Python extension";
+    homepage = "https://github.com/pytries/DAWG-Python";
+    license = licenses.mit;
+    maintainers = with maintainers; [ danieldk ];
+  };
+}