1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 pythonOlder, 6}: 7 8buildPythonPackage rec { 9 pname = "precis-i18n"; 10 version = "1.1.1"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchFromGitHub { 16 owner = "byllyfish"; 17 repo = "precis_i18n"; 18 tag = "v${version}"; 19 hash = "sha256-rtg3u8lnnmQFPsNC52LNVoEVu6CeHzAWvOjWBlzLKC4="; 20 }; 21 22 pythonImportsCheck = [ "precis_i18n" ]; 23 24 meta = with lib; { 25 description = "Internationalized usernames and passwords"; 26 homepage = "https://github.com/byllyfish/precis_i18n"; 27 changelog = "https://github.com/byllyfish/precis_i18n/blob/v${version}/CHANGELOG.rst"; 28 license = licenses.mit; 29 maintainers = [ ]; 30 }; 31}