Unverified Commit b348a66b authored by R. RyanTM's avatar R. RyanTM Committed by Nick Cao
Browse files

python312Packages.django-types: 0.19.1 -> 0.20.0

parent 600b0e25
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -8,23 +8,24 @@

buildPythonPackage rec {
  pname = "django-types";
  version = "0.19.1";
  version = "0.20.0";
  pyproject = true;

  src = fetchPypi {
    pname = "django_types";
    inherit version;
    hash = "sha256-WueYhhLPb7w1ewGLvDs6h4tl4EJ1zEbg011mpwja/xI=";
    hash = "sha256-TlXSxWFV49addd756x2VqJEwPyrBn8z2/oBW2kKT+uc=";
  };

  nativeBuildInputs = [ poetry-core ];
  build-system = [ poetry-core ];

  propagatedBuildInputs = [ types-psycopg2 ];
  dependencies = [ types-psycopg2 ];

  meta = with lib; {
  meta = {
    description = "Type stubs for Django";
    homepage = "https://github.com/sbdchd/django-types";
    license = licenses.mit;
    maintainers = [ ];
    changelog = "https://github.com/sbdchd/django-types/blob/main/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ nickcao ];
  };
}