Files
nixpkgs/pkgs/development/python-modules/django-tastypie/default.nix
T
2024-04-25 17:51:51 +02:00

45 lines
983 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
python-dateutil,
python-mimeparse,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "django-tastypie";
version = "0.14.7";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "django-tastypie";
repo = "django-tastypie";
rev = "refs/tags/v${version}";
hash = "sha256-bQBq5Wk5P9c+/a5B+LnxG8aCrVK1A3jLsLFK69/UYjo=";
};
build-system = [ setuptools ];
dependencies = [
python-dateutil
python-mimeparse
];
# Tests requires a Django instance
doCheck = false;
pythonImportsCheck = [ "tastypie" ];
meta = with lib; {
description = "Utilities and helpers for writing Pylint plugins";
homepage = "https://github.com/django-tastypie/django-tastypie";
changelog = "https://github.com/django-tastypie/django-tastypie/releases/tag/v${version}";
license = licenses.gpl2Only;
maintainers = with maintainers; [ fab ];
};
}