summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/et-xmlfile/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/et-xmlfile/default.nix')
-rw-r--r--pkgs/development/python-modules/et-xmlfile/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/et-xmlfile/default.nix b/pkgs/development/python-modules/et-xmlfile/default.nix
index 67d26aa36a07..b12bc700c5fb 100644
--- a/pkgs/development/python-modules/et-xmlfile/default.nix
+++ b/pkgs/development/python-modules/et-xmlfile/default.nix
@@ -5,12 +5,13 @@
lxml,
pytestCheckHook,
pythonOlder,
+ setuptools,
}:
buildPythonPackage rec {
pname = "et-xmlfile";
- version = "1.1";
- format = "setuptools";
+ version = "2.0.0";
+ pyproject = true;
disabled = pythonOlder "3.7";
@@ -18,10 +19,12 @@ buildPythonPackage rec {
domain = "foss.heptapod.net";
owner = "openpyxl";
repo = "et_xmlfile";
- rev = version;
- hash = "sha256-MJimcnYKujOL3FedGreNpuw1Jpg48ataDmFd1qwTS5A=";
+ tag = version;
+ hash = "sha256-JZ1fJ9o4/Z+9uSlaoq+pNpLSwl5Yv6BJCI1G7GOaQ1I=";
};
+ build-system = [ setuptools ];
+
nativeCheckInputs = [
lxml
pytestCheckHook