Merge pull request #100521 from SuperSandro2000/python-libsass
pythonPackages.libsass: init at 0.20.1
This commit is contained in:
commit
b1cff045d6
|
@ -0,0 +1,37 @@
|
||||||
|
{ lib, buildPythonPackage, fetchFromGitHub, libsass, six, pytest, werkzeug }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "libsass";
|
||||||
|
version = "0.20.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "sass";
|
||||||
|
repo = "libsass-python";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1r0kgl7i6nnhgjl44sjw57k08gh2qr7l8slqih550dyxbf1akbxh";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libsass ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
export SYSTEM_SASS=true;
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest
|
||||||
|
werkzeug
|
||||||
|
];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
pytest sasstests.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A straightforward binding of libsass for Python. Compile Sass/SCSS in Python with no Ruby stack at all!";
|
||||||
|
homepage = "https://sass.github.io/libsass-python/";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3451,6 +3451,8 @@ in {
|
||||||
|
|
||||||
librosa = callPackage ../development/python-modules/librosa { };
|
librosa = callPackage ../development/python-modules/librosa { };
|
||||||
|
|
||||||
|
libsass = (callPackage ../development/python-modules/libsass { inherit (pkgs) libsass; });
|
||||||
|
|
||||||
libsavitar = callPackage ../development/python-modules/libsavitar { };
|
libsavitar = callPackage ../development/python-modules/libsavitar { };
|
||||||
|
|
||||||
libselinux = pipe pkgs.libselinux [
|
libselinux = pipe pkgs.libselinux [
|
||||||
|
|
Loading…
Reference in New Issue