about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/contextlib2/default.nix
blob: 46fcc378be9d1a6a3d467d3c5fc76efa44a714a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib
, buildPythonPackage
, fetchPypi
, unittest2
}:

buildPythonPackage rec {
  pname = "contextlib2";
  version = "0.5.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "509f9419ee91cdd00ba34443217d5ca51f5a364a404e1dce9e8979cea969ca48";
  };

  checkInputs = [ unittest2 ];

  meta = {
    description = "Backports and enhancements for the contextlib module";
    homepage = https://contextlib2.readthedocs.org/;
    license = lib.licenses.psfl;
  };
}