This reverts commit65a333600d. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
46 lines
779 B
Nix
46 lines
779 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
lxml,
|
|
pillow,
|
|
typing-extensions,
|
|
xlsxwriter,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-pptx";
|
|
version = "1.0.2";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "scanny";
|
|
repo = "python-pptx";
|
|
rev = "v${version}";
|
|
hash = "sha256-KyBttTAtP8sVPjYdrY0XReB+4Xfru8GdyYWuiyNZ67w=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
lxml
|
|
pillow
|
|
typing-extensions
|
|
xlsxwriter
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pptx"
|
|
];
|
|
|
|
meta = {
|
|
description = "Create Open XML PowerPoint documents in Python";
|
|
homepage = "https://github.com/scanny/python-pptx";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ happysalada ];
|
|
};
|
|
}
|