python310Packages.pyscss: drop ordereddict

This commit is contained in:
Sandro Jäckel
2022-06-06 11:46:14 -07:00
committed by Jonathan Ringer
parent bbe515c4c2
commit cb24b62e36
@@ -5,7 +5,6 @@
, six
, enum34
, pathlib
, ordereddict
, pythonOlder
}:
@@ -23,8 +22,7 @@ buildPythonPackage rec {
checkInputs = [ pytest ];
propagatedBuildInputs = [ six ]
++ (lib.optionals (pythonOlder "3.4") [ enum34 pathlib ])
++ (lib.optionals (pythonOlder "2.7") [ ordereddict ]);
++ lib.optionals (pythonOlder "3.4") [ enum34 pathlib ];
# Test suite is broken.
# See https://github.com/Kronuz/pyScss/issues/415