1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6buildPythonPackage rec { 7 pname = "plugnplay"; 8 version = "0.5.4"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "877e2d2500a45aaf31e5175f9f46182088d3e2d64c1c6b9ff6c778ae0ee594c8"; 14 }; 15 16 # no tests 17 doCheck = false; 18 19 pythonImportsCheck = [ "plugnplay" ]; 20 21 meta = with lib; { 22 description = "Generic plug-in system for python applications"; 23 homepage = "https://github.com/daltonmatos/plugnplay"; 24 license = licenses.gpl2Only; 25 maintainers = [ ]; 26 }; 27}