python2.pkgs: move expressions into python2-modules/ folder

Another step in further separating python2 from python3.
This commit is contained in:
Frederik Rietdijk
2022-01-16 07:34:26 +01:00
committed by Frederik Rietdijk
parent 2027fb600d
commit ae18d68b6b
82 changed files with 251 additions and 96 deletions
@@ -1,23 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, unittest2
}:
buildPythonPackage rec {
pname = "contextlib2";
version = "0.6.0.post1";
src = fetchPypi {
inherit pname version;
sha256 = "01f490098c18b19d2bd5bb5dc445b2054d2fa97f09a4280ba2c5f3c394c8162e";
};
checkInputs = [ unittest2 ];
meta = {
description = "Backports and enhancements for the contextlib module";
homepage = "https://contextlib2.readthedocs.org/";
license = lib.licenses.psfl;
};
}