about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/localimport/default.nix
blob: 3c41618d5b832bcca5add10ce1e77621bd8d7478 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 ];
  };
}