Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.sqids: 0.4.1 -> 0.5.0

https://github.com/sqids/sqids-python/blob/v0.5.0/CHANGELOG.md

+8 -4
+8 -4
pkgs/development/python-modules/sqids/default.nix
··· 4 4 fetchPypi, 5 5 pythonOlder, 6 6 setuptools-scm, 7 + hypothesis, 7 8 pytestCheckHook, 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "sqids"; 12 - version = "0.4.1"; 13 + version = "0.5.0"; 13 14 pyproject = true; 14 15 15 16 disabled = pythonOlder "3.8"; 16 17 17 18 src = fetchPypi { 18 19 inherit pname version; 19 - hash = "sha256-/8P7/vY0kb7ouUCpgGU4g0Xb77BtSeQVt6nkdcogD50="; 20 + hash = "sha256-ZHeY59W/6yNuesRwnP1M2AhjCmxQ+AIF3xe0yT5WAUA="; 20 21 }; 21 22 22 - nativeBuildInputs = [ setuptools-scm ]; 23 + build-system = [ setuptools-scm ]; 23 24 24 - nativeCheckInputs = [ pytestCheckHook ]; 25 + nativeCheckInputs = [ 26 + hypothesis 27 + pytestCheckHook 28 + ]; 25 29 26 30 pythonImportsCheck = [ "sqids" ]; 27 31