nixpkgs/pkgs/development/python-modules/genzshcomp/default.nix
Daniel Schaefer bac4d95aa2 treewide: Change URLs to HTTPS
Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them
if there's actual content. Inspired by
https://github.com/NixOS/nixpkgs/issues/60004
2019-04-22 10:19:54 +02:00

25 lines
523 B
Nix

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