depot/third_party/nixpkgs/pkgs/development/python-modules/dek/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
741 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 = "The decorator-decorator";
homepage = "https://github.com/rec/dek";
changelog = "https://github.com/rec/dek/blob/${src.rev}/CHANGELOG";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}