python3Packages.pyscss: drop python 3.4 support

pyscss fix
This commit is contained in:
Sigmanificient 2024-05-13 00:40:40 +02:00
parent 08949784fb
commit 1f8267e2b4

View File

@ -3,9 +3,6 @@
, fetchFromGitHub
, pytestCheckHook
, six
, enum34
, pathlib
, pythonOlder
}:
buildPythonPackage rec {
@ -21,8 +18,7 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
propagatedBuildInputs = [ six ]
++ lib.optionals (pythonOlder "3.4") [ enum34 pathlib ];
propagatedBuildInputs = [ six ];
# Test suite is broken.
# See https://github.com/Kronuz/pyScss/issues/415