
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.
82 lines
1.5 KiB
Nix
82 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, rustPlatform
|
|
, pkg-config
|
|
, openssl
|
|
, publicsuffix-list
|
|
, pythonOlder
|
|
, libiconv
|
|
, CoreFoundation
|
|
, Security
|
|
, pytestCheckHook
|
|
, toml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "adblock";
|
|
version = "0.6.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
# Pypi only has binary releases
|
|
src = fetchFromGitHub {
|
|
owner = "ArniDagur";
|
|
repo = "python-adblock";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-5g5xdUzH/RTVwu4Vfb5Cb1t0ruG0EXgiXjrogD/+JCU=";
|
|
};
|
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
inherit src;
|
|
name = "${pname}-${version}";
|
|
hash = "sha256-1xmYmF5P7a5O9MilxDy+CVhmWMGRetdM2fGvTPy7JmM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
] ++ (with rustPlatform; [
|
|
cargoSetupHook
|
|
maturinBuildHook
|
|
]);
|
|
|
|
buildInputs = [
|
|
openssl
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
libiconv
|
|
CoreFoundation
|
|
Security
|
|
];
|
|
|
|
PSL_PATH = "${publicsuffix-list}/share/publicsuffix/public_suffix_list.dat";
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
toml
|
|
];
|
|
|
|
preCheck = ''
|
|
# import from $out instead
|
|
rm -r adblock
|
|
'';
|
|
|
|
disabledTestPaths = [
|
|
# relies on directory removed above
|
|
"tests/test_typestubs.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"adblock"
|
|
"adblock.adblock"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python wrapper for Brave's adblocking library";
|
|
homepage = "https://github.com/ArniDagur/python-adblock/";
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
};
|
|
}
|