Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
938 B
Nix
40 lines
938 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
pname = "bpylist2";
|
|
version = "4.1.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "parabolala";
|
|
repo = "bpylist2";
|
|
rev = "ddb89e0b0301c6b298de6469221d99b5fe127b58";
|
|
hash = "sha256-OBwDQZL5++LZgpQM96tmplAh1Pjme3KGSNFTKqKUn00=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
pythonImportsCheck = [ "bpylist2" ];
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace-fail "--pycodestyle" "" \
|
|
--replace-fail "--pylint --pylint-rcfile=pylint.rc" "" \
|
|
--replace-fail "--mypy" ""
|
|
'';
|
|
|
|
meta = {
|
|
description = "Parse and Generate binary plists and NSKeyedArchiver archives";
|
|
license = lib.licenses.mit;
|
|
homepage = "https://github.com/parabolala/bpylist2";
|
|
maintainers = with lib.maintainers; [ sigmanificient ];
|
|
};
|
|
}
|