python3Packages.uc-micro-py: 1.0.1 -> 1.0.2

+17 -7
+17 -7
pkgs/development/python-modules/uc-micro-py/default.nix
··· 3 3 , fetchFromGitHub 4 4 , pythonOlder 5 5 , pytestCheckHook 6 + , setuptools 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "uc-micro-py"; 10 - version = "1.0.1"; 11 - format = "setuptools"; 11 + version = "1.0.2"; 12 + format = "pyproject"; 12 13 13 - disabled = pythonOlder "3.6"; 14 + disabled = pythonOlder "3.7"; 14 15 15 16 src = fetchFromGitHub { 16 17 owner = "tsutsu3"; 17 18 repo = "uc.micro-py"; 18 - rev = "v${version}"; 19 - hash = "sha256-23mKwoRGjtxpCOC26V8bAN5QEHLDOoSqPeTlUuIrxZ0="; 19 + rev = "refs/tags/v${version}"; 20 + hash = "sha256-PUeWYG/VyxCfhB7onAcDFow1yYqArjmfMT99+058P7U="; 20 21 }; 21 22 22 - nativeCheckInputs = [ pytestCheckHook ]; 23 - pythonImportsCheck = [ "uc_micro" ]; 23 + nativeBuildInputs = [ 24 + setuptools 25 + ]; 26 + 27 + pythonImportsCheck = [ 28 + "uc_micro" 29 + ]; 30 + 31 + nativeCheckInputs = [ 32 + pytestCheckHook 33 + ]; 24 34 25 35 meta = with lib; { 26 36 description = "Micro subset of unicode data files for linkify-it-py";