1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6 7buildPythonPackage rec { 8 pname = "regex"; 9 version = "2018.02.08"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "2353c0e983c4029caf32016f1dddef623c3117ac282a818468c6d2f5d541698d"; 14 }; 15 16 meta = { 17 description = "Alternative regular expression module, to replace re"; 18 homepage = https://bitbucket.org/mrabarnett/mrab-regex; 19 license = lib.licenses.psfl; 20 platforms = lib.platforms.linux; 21 maintainers = with lib.maintainers; [ abbradar ]; 22 }; 23}