Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, setuptools 5}: 6 7buildPythonPackage rec { 8 pname = "genzshcomp"; 9 version = "0.6.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "b582910d36f9ad0992756d7e9ccbe3e5cf811934b1002b51f25b99d3dda9d573"; 14 }; 15 16 buildInputs = [ setuptools ]; 17 18 meta = with 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}