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