about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/dawg-python/default.nix
blob: 015e6a1d5c3486f062319ce31c1d727c32b4debc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, fetchPypi
, buildPythonPackage
}:

buildPythonPackage rec {
  pname = "dawg-python";
  version = "0.7.2";
  format = "setuptools";

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