mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
25 lines
726 B
Nix
25 lines
726 B
Nix
{ lib, python3Packages, fetchPypi }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "lesscpy";
|
|
version = "0.15.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-EEXRepj2iGRsp1jf8lTm6cA3RWSOBRoIGwOVw7d8gkw=";
|
|
};
|
|
|
|
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";
|
|
mainProgram = "lesscpy";
|
|
homepage = "https://github.com/lesscpy/lesscpy";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ s1341 ];
|
|
};
|
|
}
|