biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / nixpkgs / default.nix
blob989eb91287d89daa3d0756e90f5d0582c8203257
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pbr,
6   pythonix,
7   pythonAtLeast,
8 }:
10 buildPythonPackage rec {
11   pname = "nixpkgs";
12   version = "0.2.4";
13   format = "setuptools";
14   disabled = !pythonAtLeast "3.5";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "0dlvq4bpamhlva86042wlc0xxfsxlpdgm2adfb1c6y3vjgbm0nvd";
19   };
21   buildInputs = [ pbr ];
22   propagatedBuildInputs = [ pythonix ];
24   # does not have any tests
25   doCheck = false;
26   pythonImportsCheck = [ "nixpkgs" ];
28   meta = with lib; {
29     description = "Allows to `from nixpkgs import` stuff in interactive Python sessions";
30     homepage = "https://github.com/t184256/nixpkgs-python-importer";
31     license = licenses.mit;
32     maintainers = with maintainers; [ t184256 ];
33   };