Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / textdistance / default.nix
blob2c2d5ee23adf6a11e41329fe492993dc911c6788
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "textdistance";
9   version = "4.6.0";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-cyxQMVzU7pRjg4ZDzxnWkiEwLDYDHqpgcMMMwKpdqMo=";
17   };
19   # There aren't tests
20   doCheck = false;
22   pythonImportsCheck = [
23     "textdistance"
24   ];
26   meta = with lib; {
27     description = "Python library for comparing distance between two or more sequences";
28     homepage = "https://github.com/life4/textdistance";
29     changelog = "https://github.com/life4/textdistance/releases/tag/${version}";
30     license = licenses.mit;
31     maintainers = with maintainers; [ ];
32   };