1cff24292d
Diff: https://github.com/django-tastypie/django-tastypie/compare/refs/tags/v0.15.0...v0.15.1 Changelog: https://github.com/django-tastypie/django-tastypie/releases/tag/v0.15.1
45 lines
973 B
Nix
45 lines
973 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
python-dateutil,
|
|
python-mimeparse,
|
|
pythonOlder,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-tastypie";
|
|
version = "0.15.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "django-tastypie";
|
|
repo = "django-tastypie";
|
|
tag = "v${version}";
|
|
hash = "sha256-KmBI8kHcmRfbNIfBEz5pHyseWcWnfP3tq6GAPi4tdhE=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|