1{ stdenv, buildPythonPackage, fetchPypi, 2 click, pytest 3}: 4 5buildPythonPackage rec { 6 pname = "click-plugins"; 7 version = "1.0.3"; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "1ifphgaw5mmcdnqd0qfnmrbm62q3k6p573aff4cxgpyjxmz5xk3s"; 12 }; 13 14 propagatedBuildInputs = [ 15 click 16 ]; 17 18 checkInputs = [ 19 pytest 20 ]; 21 22 meta = with stdenv.lib; { 23 description = "An extension module for click to enable registering CLI commands"; 24 homepage = https://github.com/click-contrib/click-plugins; 25 license = licenses.bsd3; 26 maintainers = with maintainers; [ knedlsepp ]; 27 }; 28}