They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
82 lines
1.7 KiB
Nix
82 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
rustPlatform,
|
|
|
|
# native darwin dependencies
|
|
libiconv,
|
|
|
|
# tests
|
|
pytestCheckHook,
|
|
hypothesis,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "css-inline";
|
|
version = "0.14.6";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Stranger6667";
|
|
repo = "css-inline";
|
|
rev = "python-v${version}";
|
|
hash = "sha256-x0DxoEKXgMMIlebzL6xVedViGGra2Bx/aox0XiXi+Dc=";
|
|
};
|
|
|
|
postPatch = ''
|
|
cd bindings/python
|
|
ln -s ${./Cargo.lock} Cargo.lock
|
|
'';
|
|
|
|
# call `cargo build --release` in bindings/python and copy the
|
|
# resulting lock file
|
|
cargoDeps = rustPlatform.fetchCargoVendor {
|
|
inherit src;
|
|
postPatch = ''
|
|
cd bindings/python
|
|
ln -s ${./Cargo.lock} Cargo.lock
|
|
'';
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-4zi29ZdALummwcWxYqDDEPAjKptmLqyYUJzWMrEK4os=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
rustPlatform.cargoSetupHook
|
|
rustPlatform.maturinBuildHook
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
libiconv
|
|
];
|
|
|
|
pythonImportsCheck = [ "css_inline" ];
|
|
|
|
nativeCheckInputs = [
|
|
hypothesis
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests =
|
|
[
|
|
# fails to connect to local server
|
|
"test_cache"
|
|
"test_remote_stylesheet"
|
|
]
|
|
++ lib.optionals (stdenv.hostPlatform.isDarwin) [
|
|
# pyo3_runtime.PanicException: event loop thread panicked
|
|
"test_invalid_href"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Inline CSS into style attributes";
|
|
homepage = "https://github.com/Stranger6667/css-inline";
|
|
changelog = "https://github.com/Stranger6667/css-inline/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|