tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pythonPackages.nixpkgs: Disable tests
Sandro Jäckel
5 years ago
7923272c
075da392
+4
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
nixpkgs
default.nix
+4
pkgs/development/python-modules/nixpkgs/default.nix
···
19
19
buildInputs = [ pbr ];
20
20
propagatedBuildInputs = [ pythonix ];
21
21
22
22
+
# does not have any tests
23
23
+
doCheck = false;
24
24
+
pythonImportsCheck = [ "nixpkgs" ];
25
25
+
22
26
meta = with stdenv.lib; {
23
27
description = "Allows to `from nixpkgs import` stuff in interactive Python sessions";
24
28
homepage = "https://github.com/t184256/nixpkgs-python-importer";