linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / lazy_import / default.nix
blob60eba0577b035ce28b050eda21aaa69a1c3212a4
1 { lib, buildPythonPackage, fetchPypi
2 , pytest
3 , pytest_xdist
4 , six }:
6 buildPythonPackage rec {
7   pname = "lazy_import";
8   version = "0.2.2";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "0gca9xj60qr3aprj9qdc66crr4r7hl8wzv6gc9y40nclazwawj91";
13   };
15   checkInputs = [
16     pytest
17     pytest_xdist
18   ];
20   propagatedBuildInputs = [
21     six
22   ];
24   checkPhase = ''
25     cd lazy_import
26     pytest --boxed
27   '';
29   meta = with lib; {
30     description = "lazy_import provides a set of functions that load modules, and related attributes, in a lazy fashion.";
31     homepage = https://github.com/mnmelo/lazy_import;
32     license = licenses.gpl3;
33     maintainers = [ maintainers.marenz ];
34   };