Commit 241a0d28 authored by Robert Schütz's avatar Robert Schütz
Browse files

python3Packages.py-stringmatching: use unversioned numpy

Python packages' dependencies may only contain unversioned attributes.
parent de69d2ba
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
  setuptools,

  # dependencies
  numpy_1,
  numpy,
  six,

  # tests
@@ -34,7 +34,7 @@ buildPythonPackage rec {
  ];

  dependencies = [
    numpy_1
    numpy
    six
  ];

@@ -47,6 +47,7 @@ buildPythonPackage rec {
  pythonImportsCheck = [ "py_stringmatching" ];

  meta = with lib; {
    broken = lib.versionAtLeast numpy.version "2";
    description = "Python string matching library including string tokenizers and string similarity measures";
    homepage = "https://github.com/anhaidgroup/py_stringmatching";
    changelog = "https://github.com/anhaidgroup/py_stringmatching/blob/v${version}/CHANGES.txt";