python310Packages.yamlordereddictloader: drop ordereddict

This commit is contained in:
Sandro Jäckel 2022-05-28 18:54:36 +02:00 committed by Jonathan Ringer
parent 1e861c4e03
commit 9e3cbe04c6
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0

View File

@ -1,8 +1,6 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, ordereddict
, pyyaml
}:
@ -15,7 +13,7 @@ buildPythonPackage rec {
sha256 = "03h8wa6pzqjiw25s3jv9gydn77gs444mf31lrgvpgy53kswz0c3z";
};
propagatedBuildInputs = [ pyyaml ] ++ lib.optional (isPy27) ordereddict;
propagatedBuildInputs = [ pyyaml ];
# no tests
doCheck = false;