summary refs log tree commit diff
path: root/pkgs/development/compilers/lesscpy/default.nix
blob: 30429f1a9f2865e984e8c2a399b7334ec5ea300a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, lib, python3Packages }:

python3Packages.buildPythonApplication rec {
  pname   = "lesscpy";
  version = "0.13.0";

  src = python3Packages.fetchPypi {
    inherit pname version;
    sha256 = "1bbjag13kawnjdn7q4flfrkd0a21rgn9ycfqsgfdmg658jsx1ipk";
  };

  checkInputs = with python3Packages; [ pytestCheckHook ];
  pythonImportsCheck = [ "lesscpy" ];
  propagatedBuildInputs = with python3Packages; [ ply six ];

  doCheck = false; # Really weird test failures (`nix-build-python2.css not found`)

  meta = with lib; {
    description = "Python LESS Compiler";
    homepage    = "https://github.com/lesscpy/lesscpy";
    license     = licenses.mit;
    maintainers = with maintainers; [ s1341 ];
  };
}