summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2024-06-19 05:07:07 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-06-24 12:18:11 +0200
commitc15e24e66a47a143221f165b61ba4d42e4ad374b (patch)
tree61419f7d7c5734cfe4bd7f45ca0976df550b94e2 /pkgs/development/python-modules
parent13627f3c3e407df7f3dd3fc376178e9ba6a77a2c (diff)
python3Packages.python-docx: 1.1.0 -> 1.1.2
https://github.com/python-openxml/python-docx/blob/v1.1.2/HISTORY.rst
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/python-docx/default.nix16
1 files changed, 9 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/python-docx/default.nix b/pkgs/development/python-modules/python-docx/default.nix
index 627cb55ff354..28c4d4c3c115 100644
--- a/pkgs/development/python-modules/python-docx/default.nix
+++ b/pkgs/development/python-modules/python-docx/default.nix
@@ -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
];