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