Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 24 lines 523 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, setuptools 5}: 6 7buildPythonPackage rec { 8 pname = "genzshcomp"; 9 version = "0.5.2"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "d28ae62b1b2727f32dc7606bc58201b8c12894ad3d1d4fdb40e1f951e3ae8f85"; 14 }; 15 16 buildInputs = [ setuptools ]; 17 18 meta = with stdenv.lib; { 19 description = "Automatically generated zsh completion function for Python's option parser modules"; 20 homepage = https://bitbucket.org/hhatto/genzshcomp/; 21 license = licenses.bsd0; 22 }; 23 24}