linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / contextlib2 / default.nix
blob38d9fb696e2818c2f6062214c73c8332649233ea
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , unittest2
5 }:
7 buildPythonPackage rec {
8   pname = "contextlib2";
9   version = "0.6.0.post1";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "01f490098c18b19d2bd5bb5dc445b2054d2fa97f09a4280ba2c5f3c394c8162e";
14   };
16   checkInputs = [ unittest2 ];
18   meta = {
19     description = "Backports and enhancements for the contextlib module";
20     homepage = "https://contextlib2.readthedocs.org/";
21     license = lib.licenses.psfl;
22   };