Commit 359e3ac5 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.djangorestframework-stubs: 3.16.0 -> 3.16.1

parent f0aabe9a
Loading
Loading
Loading
Loading
+11 −6
Original line number Diff line number Diff line
@@ -19,21 +19,26 @@

buildPythonPackage rec {
  pname = "djangorestframework-stubs";
  version = "3.16.0";
  version = "3.16.1";
  pyproject = true;

  disabled = pythonOlder "3.9";
  disabled = pythonOlder "3.10";

  src = fetchFromGitHub {
    owner = "typeddjango";
    repo = "djangorestframework-stubs";
    tag = version;
    hash = "sha256-q/9tCMT79TMHIQ4KH8tiunaTt7L6IItwNYBFlbNxBcE=";
    hash = "sha256-TTv6v7G3LODrUDSYSNNa4+dujih7QElmvK3mMQg9EuQ=";
  };

  nativeBuildInputs = [ setuptools ];
  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail "<79.0.0" ""
  '';

  propagatedBuildInputs = [
  build-system = [ setuptools ];

  dependencies = [
    django-stubs
    requests
    types-pyyaml