Merge pull request #306810 from fabaff/django-tastypie-bump

python312Packages.django-tastypie: 0.14.6 -> 0.14.7
This commit is contained in:
Fabian Affolter 2024-04-26 09:47:58 +02:00 committed by GitHub
commit e575a6bec9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,26 +1,30 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, python-dateutil fetchFromGitHub,
, python-mimeparse python-dateutil,
, pythonOlder python-mimeparse,
pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "django-tastypie"; pname = "django-tastypie";
version = "0.14.6"; version = "0.14.7";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "django-tastypie"; owner = "django-tastypie";
repo = pname; repo = "django-tastypie";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-emZVcycGLa8Z2yMv/NWZi1b5fPk50u841cFfFF3Ke/s="; hash = "sha256-bQBq5Wk5P9c+/a5B+LnxG8aCrVK1A3jLsLFK69/UYjo=";
}; };
propagatedBuildInputs = [ build-system = [ setuptools ];
dependencies = [
python-dateutil python-dateutil
python-mimeparse python-mimeparse
]; ];
@ -28,9 +32,7 @@ buildPythonPackage rec {
# Tests requires a Django instance # Tests requires a Django instance
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "tastypie" ];
"tastypie"
];
meta = with lib; { meta = with lib; {
description = "Utilities and helpers for writing Pylint plugins"; description = "Utilities and helpers for writing Pylint plugins";