1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 pytestCheckHook,
6 six,
7}:
8
9buildPythonPackage rec {
10 pname = "pyscss";
11 version = "1.4.0";
12 format = "setuptools";
13
14 src = fetchFromGitHub {
15 repo = "pyScss";
16 owner = "Kronuz";
17 tag = "v${version}";
18 hash = "sha256-z0y4z+/JE6rZWHAvps/taDZvutyVhxxs2gMujV5rNu4=";
19 };
20
21 nativeCheckInputs = [ pytestCheckHook ];
22
23 propagatedBuildInputs = [ six ];
24
25 # Test suite is broken.
26 # See https://github.com/Kronuz/pyScss/issues/415
27 doCheck = false;
28
29 meta = with lib; {
30 description = "Scss compiler for Python";
31 homepage = "https://pyscss.readthedocs.org/en/latest/";
32 license = licenses.mit;
33 maintainers = [ ];
34 };
35}