My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/genzshcomp/default.nix

24 lines
515 B

{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "genzshcomp";
version = "0.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "b582910d36f9ad0992756d7e9ccbe3e5cf811934b1002b51f25b99d3dda9d573";
};
buildInputs = [ setuptools ];
meta = with lib; {
description = "Automatically generated zsh completion function for Python's option parser modules";
homepage = "https://bitbucket.org/hhatto/genzshcomp/";
license = licenses.bsd0;
};
}