Commit 4673cc1e authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.types-redis: refactor

parent ecf60ecf
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -3,19 +3,24 @@
, fetchPypi
, cryptography
, types-pyopenssl
, setuptools
}:

buildPythonPackage rec {
  pname = "types-redis";
  version = "4.6.0.20240409";
  format = "setuptools";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-ziF8J5WB12nfmSxbdtYcZUJbCmeWJgSOYz5kOGjriBs=";
  };

  propagatedBuildInputs = [
  build-system = [
    setuptools
  ];

  dependencies = [
    cryptography
    types-pyopenssl
  ];