about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pint/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pint/default.nix')
-rw-r--r--pkgs/development/python-modules/pint/default.nix23
1 files changed, 12 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/pint/default.nix b/pkgs/development/python-modules/pint/default.nix
index 178e738ed1655..51ef03ffc7dd9 100644
--- a/pkgs/development/python-modules/pint/default.nix
+++ b/pkgs/development/python-modules/pint/default.nix
@@ -8,11 +8,11 @@
   setuptools,
   setuptools-scm,
 
-  # propagates
-  typing-extensions,
+  # dependencies
   appdirs,
   flexcache,
   flexparser,
+  typing-extensions,
 
   # tests
   pytestCheckHook,
@@ -25,28 +25,29 @@
 
 buildPythonPackage rec {
   pname = "pint";
-  version = "0.24";
-  format = "pyproject";
+  version = "0.24.1";
+  pyproject = true;
 
-  disabled = pythonOlder "3.6";
+  disabled = pythonOlder "3.9";
 
   src = fetchFromGitHub {
     owner = "hgrecco";
     repo = "pint";
     rev = "refs/tags/${version}";
-    hash = "sha256-zMcLC3SSl/W7+xX4ah3ZV7fN/LIGJzatqH4MNK8/fec=";
+    hash = "sha256-PQAQvjMi7pFgNhUbw20vc306aTyEbCQNHGef/pxxpXo=";
   };
 
-  nativeBuildInputs = [
+  build-system = [
     setuptools
     setuptools-scm
   ];
 
-  propagatedBuildInputs = [
+  dependencies = [
     appdirs
     flexcache
     flexparser
     typing-extensions
+
     # Both uncertainties and numpy are not necessarily needed for every
     # function of pint, but needed for the pint-convert executable which we
     # necessarily distribute with this package as it is.
@@ -67,12 +68,12 @@ buildPythonPackage rec {
     export HOME=$(mktemp -d)
   '';
 
-  meta = with lib; {
+  meta = {
     changelog = "https://github.com/hgrecco/pint/blob/${version}/CHANGES";
     description = "Physical quantities module";
     mainProgram = "pint-convert";
-    license = licenses.bsd3;
+    license = lib.licenses.bsd3;
     homepage = "https://github.com/hgrecco/pint/";
-    maintainers = with maintainers; [ doronbehar ];
+    maintainers = with lib.maintainers; [ doronbehar ];
   };
 }