Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 26 lines 567 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6}: 7 8buildPythonPackage rec { 9 pname = "commonregex"; 10 version = "1.5.4"; 11 pyproject = true; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-JxUwZ4rYr1PA6MIzp2JZeWnoRtACnxIhWsF4eR894KU="; 16 }; 17 18 build-system = [ setuptools ]; 19 20 meta = { 21 description = "Collection of common regular expressions bundled with an easy to use interface"; 22 homepage = "https://github.com/madisonmay/CommonRegex"; 23 maintainers = with lib.maintainers; [ k900 ]; 24 license = lib.licenses.mit; 25 }; 26}