Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 36 lines 860 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 zope-testrunner, 6 unittestCheckHook, 7}: 8 9buildPythonPackage rec { 10 pname = "zope-i18nmessageid"; 11 version = "6.1.0"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 pname = "zope.i18nmessageid"; 16 inherit version; 17 hash = "sha256-Rawm/chvq997ePHBvM/B1DctGlSDi7rt2p26dEStiUE="; 18 }; 19 20 nativeCheckInputs = [ 21 unittestCheckHook 22 zope-testrunner 23 ]; 24 25 unittestFlagsArray = [ "src/zope/i18nmessageid" ]; 26 27 pythonImportsCheck = [ "zope.i18nmessageid" ]; 28 29 meta = with lib; { 30 homepage = "https://github.com/zopefoundation/zope.i18nmessageid"; 31 description = "Message Identifiers for internationalization"; 32 changelog = "https://github.com/zopefoundation/zope.i18nmessageid/blob/${version}/CHANGES.rst"; 33 license = licenses.zpl20; 34 maintainers = with maintainers; [ goibhniu ]; 35 }; 36}