Files
nixpkgs/pkgs/development/python-modules/orgformat/default.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

35 lines
771 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage {
pname = "orgformat";
version = "0-unstable-2024-10-23";
pyproject = true;
src = fetchFromGitHub {
owner = "novoid";
repo = "orgformat";
rev = "5346cc1a5fd670981e9b1d0bbd215eb5c79040d4";
hash = "sha256-4MnA+OzmEGN3KzjsZVwBXASiYTg529cfghpuf4owYJ8=";
};
build-system = [
setuptools
];
pythonImportsCheck = [
"orgformat"
];
meta = {
description = "Utility library for providing functions to generate and modify Org mode syntax elements like links, time-stamps, or date-stamps";
homepage = "https://github.com/novoid/orgformat";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ confusedalex ];
};
}