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/click-didyoumean/default.nix

22 lines
537 B

{ lib, buildPythonPackage, fetchPypi,
click
}:
buildPythonPackage rec {
pname = "click-didyoumean";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "f184f0d851d96b6d29297354ed981b7dd71df7ff500d82fa6d11f0856bee8035";
};
propagatedBuildInputs = [ click ];
meta = with lib; {
description = "Enable git-like did-you-mean feature in click";
homepage = "https://github.com/click-contrib/click-didyoumean";
license = licenses.mit;
maintainers = with maintainers; [ mbode ];
};
}