8e65f7f0cc
GitOrigin-RevId: 062a0c5437b68f950b081bbfc8a699d57a4ee026
23 lines
513 B
Nix
23 lines
513 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "localimport";
|
|
version = "1.7.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-8UhaZyGdN/N6UwR7pPYQR2hZCz3TrBxr1KOBJRx28ok=";
|
|
};
|
|
|
|
pythonImportsCheck = [ "localimport" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/NiklasRosenstein/py-localimport";
|
|
description = "Isolated import of Python modules";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
};
|
|
}
|