Unverified Commit 26b3fbc4 authored by Christoph Jabs's avatar Christoph Jabs
Browse files

python3Packages.python-sat: use finalAttrs

parent 97061e29
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
  pypblib,
  pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "python-sat";
  version = "1.8.dev28";
  pyproject = true;
@@ -15,7 +15,7 @@ buildPythonPackage rec {
  build-system = [ setuptools ];

  src = fetchPypi {
    inherit version;
    inherit (finalAttrs) version;
    pname = "python_sat";
    hash = "sha256-eFBUismC7x2+ng+8rbXxZTis/xNKSx2I/lVkCbx4dgo=";
  };
@@ -57,4 +57,4 @@ buildPythonPackage rec {
    ];
    platforms = lib.platforms.all;
  };
}
})