Unverified Commit dc4a6bcd authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #294592 from sinavir/aiohttp_better_packaging

python311Packages.aiohttp-client-cache: Use standard packaging
parents c2eb1270 06354636
Loading
Loading
Loading
Loading
+12 −4
Original line number Diff line number Diff line
{ lib, fetchPypi, python3, ...}:
{ lib
, fetchPypi
, buildPythonPackage
, poetry-core
, aiohttp
, attrs
, itsdangerous
, url-normalize
}:

python3.pkgs.buildPythonPackage rec {
buildPythonPackage rec {
  pname = "aiohttp_client_cache";
  version = "0.11.0";
  pyproject = true;
@@ -8,10 +16,10 @@ python3.pkgs.buildPythonPackage rec {
    inherit pname version;
    sha256 = "sha256-B2b/9O2gVJjHUlN0pYeBDcwsy3slaAnd5SroeQqEU+s=";
  };
  nativeBuildInputs = with python3.pkgs; [
  nativeBuildInputs = [
    poetry-core
  ];
  propagatedBuildInputs = with python3.pkgs; [
  propagatedBuildInputs = [
    aiohttp
    attrs
    itsdangerous