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
1 changed files with 16 additions and 14 deletions

View File

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