summary refs log tree commit diff
path: root/pkgs/development/python-modules/qiskit-nature
diff options
context:
space:
mode:
authorDrew Risinger <drewrisinger@users.noreply.github.com>2022-04-14 18:39:53 -0400
committerDrew Risinger <drewrisinger@users.noreply.github.com>2022-04-14 19:07:05 -0400
commit42a14c6b27cbe25fcfa423d11ce23f68a8496b99 (patch)
tree2f3fadd943c87fa0f542a404a8d7ceccc7911c5d /pkgs/development/python-modules/qiskit-nature
parente95a63295b2e0eff8eb57fee6ef71d60553f7246 (diff)
downloadnixpkgs-42a14c6b27cbe25fcfa423d11ce23f68a8496b99.tar
nixpkgs-42a14c6b27cbe25fcfa423d11ce23f68a8496b99.tar.gz
nixpkgs-42a14c6b27cbe25fcfa423d11ce23f68a8496b99.tar.bz2
nixpkgs-42a14c6b27cbe25fcfa423d11ce23f68a8496b99.tar.lz
nixpkgs-42a14c6b27cbe25fcfa423d11ce23f68a8496b99.tar.xz
nixpkgs-42a14c6b27cbe25fcfa423d11ce23f68a8496b99.tar.zst
nixpkgs-42a14c6b27cbe25fcfa423d11ce23f68a8496b99.zip
python3Packages.qiskit-nature: 0.3.1 -> 0.3.2
Diffstat (limited to 'pkgs/development/python-modules/qiskit-nature')
-rw-r--r--pkgs/development/python-modules/qiskit-nature/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/qiskit-nature/default.nix b/pkgs/development/python-modules/qiskit-nature/default.nix
index 2693daa6ead..7b652c50722 100644
--- a/pkgs/development/python-modules/qiskit-nature/default.nix
+++ b/pkgs/development/python-modules/qiskit-nature/default.nix
@@ -21,15 +21,15 @@
 
 buildPythonPackage rec {
   pname = "qiskit-nature";
-  version = "0.3.1";
+  version = "0.3.2";
 
   disabled = pythonOlder "3.6";
 
   src = fetchFromGitHub {
-    owner = "qiskit";
+    owner = "Qiskit";
     repo = pname;
     rev = version;
-    sha256 = "sha256-EkYppEOQGmRIxKC4ArXZb0b+p1gPGnP6AU8LbEbOpPo=";
+    sha256 = "sha256-BXUVRZ8X3OJiRexNXZsnvp+Yh8ARNYohYH49/IYFYM0=";
   };
 
   propagatedBuildInputs = [
@@ -56,7 +56,7 @@ buildPythonPackage rec {
   ];
 
   disabledTests = [
-    "test_two_qubit_reduction"  # unsure of failure reason. Might be related to recent cvxpy update?
+    "test_two_qubit_reduction"  # failure cause unclear
   ];
 
   meta = with lib; {