tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python.pkgs.contextlib2: fix tests
Frederik Rietdijk
8 years ago
501bc2f9
0e92f210
+4
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
contextlib2
default.nix
+4
-1
pkgs/development/python-modules/contextlib2/default.nix
···
1
1
{ lib
2
2
, buildPythonPackage
3
3
, fetchPypi
4
4
+
, unittest2
4
5
}:
5
6
6
7
buildPythonPackage rec {
···
13
14
sha256 = "509f9419ee91cdd00ba34443217d5ca51f5a364a404e1dce9e8979cea969ca48";
14
15
};
15
16
17
17
+
checkInputs = [ unittest2 ];
18
18
+
16
19
meta = {
17
20
description = "Backports and enhancements for the contextlib module";
18
21
homepage = http://contextlib2.readthedocs.org/;
19
22
license = lib.licenses.psfl;
20
23
};
21
21
-
}
24
24
+
}