about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hepunits
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-12-30 20:13:17 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-01-05 01:10:09 +0100
commit4ef8de9675adda62c238ff75450d4e698bd9aa1e (patch)
treee68fd2f3395f862e642e602caaa8c10f713b598d /pkgs/development/python-modules/hepunits
parentcc5ec329ff861ae86f361ccf1d81f30ce7f60449 (diff)
python3Packages.hepunits: 2.2.1 -> 2.3.0
Diffstat (limited to 'pkgs/development/python-modules/hepunits')
-rw-r--r--pkgs/development/python-modules/hepunits/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/hepunits/default.nix b/pkgs/development/python-modules/hepunits/default.nix
index c1af541def949..5224c84ab5ce8 100644
--- a/pkgs/development/python-modules/hepunits/default.nix
+++ b/pkgs/development/python-modules/hepunits/default.nix
@@ -1,20 +1,24 @@
 { lib
 , buildPythonPackage
 , fetchPypi
-, setuptools-scm
+, hatch-vcs
+, hatchling
 , pytestCheckHook
 }:
 
 buildPythonPackage rec {
   pname = "hepunits";
-  version = "2.2.1";
+  version = "2.3.0";
+  format = "pyproject";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-YJfmlUekg73Az+TRBuRHteuofFUBBg0xLNnWGqniJBQ=";
+    hash = "sha256-M7mumot7OvNVFBp0kBy1qlV9zi5MmZKgow7wRDobIgY=";
   };
+
   nativeBuildInputs = [
-    setuptools-scm
+    hatch-vcs
+    hatchling
   ];
 
   checkInputs = [