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