python3Packages.pyscss: drop python 3.4 support
pyscss fix
This commit is contained in:
@@ -3,9 +3,6 @@
|
|||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
, six
|
, six
|
||||||
, enum34
|
|
||||||
, pathlib
|
|
||||||
, pythonOlder
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@@ -21,8 +18,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
nativeCheckInputs = [ pytestCheckHook ];
|
nativeCheckInputs = [ pytestCheckHook ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ six ]
|
propagatedBuildInputs = [ six ];
|
||||||
++ lib.optionals (pythonOlder "3.4") [ enum34 pathlib ];
|
|
||||||
|
|
||||||
# Test suite is broken.
|
# Test suite is broken.
|
||||||
# See https://github.com/Kronuz/pyScss/issues/415
|
# See https://github.com/Kronuz/pyScss/issues/415
|
||||||
|
|||||||
Reference in New Issue
Block a user