mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-21 23:40:42 +08:00
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
45 lines
844 B
Nix
45 lines
844 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, libsass
|
|
, six
|
|
, pytestCheckHook
|
|
, werkzeug
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "libsass";
|
|
version = "0.22.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sass";
|
|
repo = "libsass-python";
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-5O4Er3jNUFy83m/K0HzYR+fHcSDqF/3M+fXaFZY8zEg=";
|
|
};
|
|
|
|
buildInputs = [ libsass ];
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
preBuild = ''
|
|
export SYSTEM_SASS=true;
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
werkzeug
|
|
];
|
|
|
|
pytestFlagsArray = [ "sasstests.py" ];
|
|
|
|
pythonImportsCheck = [ "sass" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python binding for libsass to compile Sass/SCSS";
|
|
homepage = "https://sass.github.io/libsass-python/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
};
|
|
}
|