python.pkgs.contextlib2: 0.5.3 -> 0.5.5

This commit is contained in:
Frederik Rietdijk
2017-09-05 09:51:44 +02:00
parent 3771bf74a8
commit 66b6c04357
2 changed files with 22 additions and 9 deletions

View File

@@ -0,0 +1,21 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "contextlib2";
version = "0.5.5";
name = "${pname}-${version}";
src = fetchPypi rec {
inherit pname version;
sha256 = "509f9419ee91cdd00ba34443217d5ca51f5a364a404e1dce9e8979cea969ca48";
};
meta = {
description = "Backports and enhancements for the contextlib module";
homepage = http://contextlib2.readthedocs.org/;
license = lib.licenses.psfl;
};
}