Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, 2 click 3}: 4 5buildPythonPackage rec { 6 pname = "click-didyoumean"; 7 version = "0.3.0"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "f184f0d851d96b6d29297354ed981b7dd71df7ff500d82fa6d11f0856bee8035"; 12 }; 13 14 propagatedBuildInputs = [ click ]; 15 16 meta = with lib; { 17 description = "Enable git-like did-you-mean feature in click"; 18 homepage = "https://github.com/click-contrib/click-didyoumean"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ mbode ]; 21 }; 22}