Merge pull request #266983 from natsukium/py-stringmatching

python311Packages.py-stringmatching: rename from py_stringmatching

authored by Fabian Affolter and committed by GitHub e6480813 115ddb06

+15 -5
+13 -4
pkgs/development/python-modules/py_stringmatching/default.nix pkgs/development/python-modules/py-stringmatching/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , nose 4 + , setuptools 5 + , pytestCheckHook 5 6 , numpy 6 7 , pythonOlder 7 8 , six ··· 10 11 buildPythonPackage rec { 11 12 pname = "py-stringmatching"; 12 13 version = "0.4.3"; 13 - format = "setuptools"; 14 + pyproject = true; 14 15 15 16 disabled = pythonOlder "3.7"; 16 17 17 18 src = fetchPypi { 18 19 pname = "py_stringmatching"; 19 20 inherit version; 20 - sha256 = "sha256-khubsWOzEN80HDOCORMgT3sMqfajGfW0UUCDAL03je4="; 21 + hash = "sha256-khubsWOzEN80HDOCORMgT3sMqfajGfW0UUCDAL03je4="; 21 22 }; 22 23 24 + nativeBuildInputs = [ 25 + setuptools 26 + ]; 27 + 23 28 propagatedBuildInputs = [ 24 29 numpy 25 30 six 26 31 ]; 27 32 28 33 nativeCheckInputs = [ 29 - nose 34 + pytestCheckHook 30 35 ]; 36 + 37 + preCheck = '' 38 + cd $out 39 + ''; 31 40 32 41 pythonImportsCheck = [ 33 42 "py_stringmatching"
+1
pkgs/top-level/python-aliases.nix
··· 281 281 pushbullet = pushbullet-py; # Added 2022-10-15 282 282 Pweave = pweave; # added 2023-02-19 283 283 py-radix = throw "py-radix has been removed, since it abandoned"; # added 2023-07-07 284 + py_stringmatching = py-stringmatching; # added 2023-11-12 284 285 pyalmond = throw "pyalmond has been removed, since its API endpoints have been shutdown"; # added 2023-02-02 285 286 pyblake2 = throw "pyblake2 is deprecated in favor of hashlib"; # added 2023-04-23 286 287 pyblock = throw "pyblock has been removed, since it is abandoned and broken"; # added 2023-06-20
+1 -1
pkgs/top-level/python-packages.nix
··· 11045 11045 11046 11046 pystray = callPackage ../development/python-modules/pystray { }; 11047 11047 11048 - py_stringmatching = callPackage ../development/python-modules/py_stringmatching { }; 11048 + py-stringmatching = callPackage ../development/python-modules/py-stringmatching { }; 11049 11049 11050 11050 pysvg-py3 = callPackage ../development/python-modules/pysvg-py3 { }; 11051 11051