1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "localimport"; 8 version = "1.7.6"; 9 10 src = fetchPypi { 11 inherit pname version; 12 hash = "sha256-8UhaZyGdN/N6UwR7pPYQR2hZCz3TrBxr1KOBJRx28ok="; 13 }; 14 15 pythonImportsCheck = [ "localimport" ]; 16 17 meta = with lib; { 18 homepage = "https://github.com/NiklasRosenstein/py-localimport"; 19 description = "Isolated import of Python modules"; 20 license = licenses.mit; 21 maintainers = with maintainers; [ AndersonTorres ]; 22 }; 23}