at 22.05-pre 553 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "exrex"; 8 version = "0.10.5"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1wq8nyycdprxl9q9y1pfhkbca4rvysj45h1xn7waybl3v67v3f1z"; 13 }; 14 15 # Projec thas no released tests 16 doCheck = false; 17 pythonImportsCheck = [ "exrex" ]; 18 19 meta = with lib; { 20 description = "Irregular methods on regular expressions"; 21 homepage = "https://github.com/asciimoo/exrex"; 22 license = with licenses; [ agpl3Plus ]; 23 maintainers = with maintainers; [ fab ]; 24 }; 25}