pythonPackages.localimport: init at 1.7.3
This commit is contained in:
23
pkgs/development/python-modules/localimport/default.nix
Normal file
23
pkgs/development/python-modules/localimport/default.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "localimport";
|
||||
version = "1.7.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-p7ACOzJRwH9hICMcxtVt/r+twEoFsDxPKGuarFnFIbo=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user