Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 515 B view raw
1{ pkgs 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "escapism"; 8 version = "1.0.0"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "5f1cc1fa04a95f5b85b3da194750f8a71846d493ea332f62e8798949f10c9b86"; 13 }; 14 15 # No tests distributed 16 doCheck = false; 17 18 meta = with pkgs.lib; { 19 description = "Simple, generic API for escaping strings"; 20 homepage = "https://github.com/minrk/escapism"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ bzizou ]; 23 }; 24}