lesscpy: init at 0.13.0

This commit is contained in:
s1341 2023-03-16 08:36:13 +02:00
parent 8968bb87e2
commit d9587d35f4
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -2408,6 +2408,8 @@ with pkgs;
krusader = libsForQt5.callPackage ../applications/file-managers/krusader { };
lesscpy = callPackage ../development/compilers/lesscpy { };
lf = callPackage ../applications/file-managers/lf { };
ctpv = callPackage ../applications/file-managers/lf/ctpv.nix { };