about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2023-12-26 21:07:54 +0100
committerGitHub <noreply@github.com>2023-12-26 21:07:54 +0100
commit734087d0b08ff119eceb50a8d538fa37157d14fa (patch)
treeb02d62a133a3884b3ebc720751c7f44273770c38 /pkgs
parentcb14636bcc35d6ff54dd5ea6b5bb7c92fd7cd295 (diff)
parentea3b769d47538b79a7c30d336b95fb9de0cfee5a (diff)
downloadnixlib-734087d0b08ff119eceb50a8d538fa37157d14fa.tar
nixlib-734087d0b08ff119eceb50a8d538fa37157d14fa.tar.gz
nixlib-734087d0b08ff119eceb50a8d538fa37157d14fa.tar.bz2
nixlib-734087d0b08ff119eceb50a8d538fa37157d14fa.tar.lz
nixlib-734087d0b08ff119eceb50a8d538fa37157d14fa.tar.xz
nixlib-734087d0b08ff119eceb50a8d538fa37157d14fa.tar.zst
nixlib-734087d0b08ff119eceb50a8d538fa37157d14fa.zip
Merge pull request #276870 from fabaff/pywerview-bump
python311Packages.pywerview: 0.5.2 -> 0.6
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/pywerview/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/pywerview/default.nix b/pkgs/development/python-modules/pywerview/default.nix
index ac637d4501a8..a7e7976a1019 100644
--- a/pkgs/development/python-modules/pywerview/default.nix
+++ b/pkgs/development/python-modules/pywerview/default.nix
@@ -9,22 +9,27 @@
 , pyasn1
 , pycryptodome
 , pythonOlder
+, setuptools
 }:
 
 buildPythonPackage rec {
   pname = "pywerview";
-  version = "0.5.2";
-  format = "setuptools";
+  version = "0.6";
+  pyproject = true;
 
   disabled = pythonOlder "3.7";
 
   src = fetchFromGitHub {
     owner = "the-useless-one";
-    repo = pname;
+    repo ="pywerview";
     rev = "refs/tags/v${version}";
-    hash = "sha256-BWH9zYrlbzQC0/cc5k5BlXWyh38gI+hwwTCWhe1xgog=";
+    hash = "sha256-WZE6qWq9v4A78YELMEcbgyufBRrVFRTqlhGmknpKn1Y=";
   };
 
+  nativeBuildInputs = [
+    setuptools
+  ];
+
   propagatedBuildInputs = [
     beautifulsoup4
     gssapi