Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / nixpkgs / default.nix
blobacebe5d758f7bed970c3af8ebbaf868eabcd74a9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pbr
5 , pythonix
6 , pythonAtLeast
7 }:
9 buildPythonPackage rec {
10   pname = "nixpkgs";
11   version = "0.2.4";
12   disabled = ! pythonAtLeast "3.5";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "0dlvq4bpamhlva86042wlc0xxfsxlpdgm2adfb1c6y3vjgbm0nvd";
17   };
19   buildInputs = [ pbr ];
20   propagatedBuildInputs = [ pythonix ];
22   # does not have any tests
23   doCheck = false;
24   pythonImportsCheck = [ "nixpkgs" ];
26   meta = with lib; {
27     description = "Allows to `from nixpkgs import` stuff in interactive Python sessions";
28     homepage = "https://github.com/t184256/nixpkgs-python-importer";
29     license = licenses.mit;
30     maintainers = with maintainers; [ t184256 ];
31   };