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
38 lines
719 B
Nix
38 lines
719 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
xmod,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dek";
|
|
version = "1.4.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rec";
|
|
repo = "dek";
|
|
rev = "v${version}";
|
|
hash = "sha256-DYODdImTRCukGmGbkZ+9TQeI9DYaeRd/EHS6VND5IDs=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [ xmod ];
|
|
|
|
nativeBuildInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "dek" ];
|
|
|
|
meta = with lib; {
|
|
description = "Decorator-decorator";
|
|
homepage = "https://github.com/rec/dek";
|
|
changelog = "https://github.com/rec/dek/blob/${src.rev}/CHANGELOG";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|