python2Packages: remove superfluous overrides

Since Python 2 is not supported anymore we only keep those overrides
which are used by leaf packages.
This commit is contained in:
Robert Schütz
2021-12-31 08:10:25 +00:00
committed by Martin Weinelt
parent 4beaf5301d
commit 2cae050057
219 changed files with 11 additions and 7813 deletions

View File

@@ -1,13 +0,0 @@
{ buildPythonPackage, fetchPypi, setuptools-scm, six }:
buildPythonPackage rec {
pname = "jaraco.stream";
version = "2.0";
src = fetchPypi {
inherit pname version;
sha256 = "196synw4g76yagcflmavi7wakf5cdgsflmvbj7zs616gv03xbsf2";
};
doCheck = false;
buildInputs = [ setuptools-scm ];
propagatedBuildInputs = [ six ];
}