about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-metadata
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-07-23 21:48:41 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-07-28 12:15:33 +0200
commit155e879007665dab64cf32dc543ca40534f0002f (patch)
tree827aec3ae024716b1289cef105ce772b10a7f950 /pkgs/development/python-modules/pytest-metadata
parent3f0c47f531cacf2917593d7545e557fd5208a96c (diff)
python310Packages.pytest-metadata: 2.0.4 -> 3.0.0
Diffstat (limited to 'pkgs/development/python-modules/pytest-metadata')
-rw-r--r--pkgs/development/python-modules/pytest-metadata/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/pytest-metadata/default.nix b/pkgs/development/python-modules/pytest-metadata/default.nix
index 7d1ec8696c218..7b4a285e35521 100644
--- a/pkgs/development/python-modules/pytest-metadata/default.nix
+++ b/pkgs/development/python-modules/pytest-metadata/default.nix
@@ -1,16 +1,16 @@
 { lib
 , buildPythonPackage
 , fetchPypi
-, poetry-core
+, hatch-vcs
+, hatchling
 , pytest
 , pytestCheckHook
 , pythonOlder
-, setuptools-scm
 }:
 
 buildPythonPackage rec {
   pname = "pytest-metadata";
-  version = "2.0.4";
+  version = "3.0.0";
   format = "pyproject";
 
   disabled = pythonOlder "3.7";
@@ -18,12 +18,12 @@ buildPythonPackage rec {
   src = fetchPypi {
     pname = "pytest_metadata";
     inherit version;
-    hash = "sha256-/MZT9l/jA1tHiCC1KE+/D1KANiLuP2Ci+u16fTuh9B4=";
+    hash = "sha256-dpqcZdKIS9WDvGJrCs53rRXb4C3ZGpEG1H/UbZwlaco=";
   };
 
   nativeBuildInputs = [
-    poetry-core
-    setuptools-scm
+    hatchling
+    hatch-vcs
   ];
 
   buildInputs = [