python3Packages.python-docx: 1.1.0 -> 1.1.2

https://github.com/python-openxml/python-docx/blob/v1.1.2/HISTORY.rst
This commit is contained in:
Martin Weinelt
2024-06-24 12:18:11 +02:00
parent 13627f3c3e
commit c15e24e66a
@@ -2,7 +2,7 @@
lib,
behave,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
lxml,
mock,
pyparsing,
@@ -14,19 +14,21 @@
buildPythonPackage rec {
pname = "python-docx";
version = "1.1.0";
version = "1.1.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-WCm3IhQc8at5rt8MNNn+mSSyl2RYTA8hZOsrAtzfF8k=";
src = fetchFromGitHub {
owner = "python-openxml";
repo = "python-docx";
rev = "refs/tags/v${version}";
hash = "sha256-isxMtq5j5J02GcHMzOJdJw+ZokLoxA6fG1xsN21Irbc=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
lxml
typing-extensions
];