504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
24 lines
538 B
Nix
24 lines
538 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "localimport";
|
|
version = "1.7.6";
|
|
format = "setuptools";
|
|
|
|
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 ];
|
|
};
|
|
}
|