11 buildPythonPackage rec {
12 pname = "django-tastypie";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
19 owner = "django-tastypie";
20 repo = "django-tastypie";
21 rev = "refs/tags/v${version}";
22 hash = "sha256-bQBq5Wk5P9c+/a5B+LnxG8aCrVK1A3jLsLFK69/UYjo=";
25 build-system = [ setuptools ];
32 # Tests requires a Django instance
35 pythonImportsCheck = [ "tastypie" ];
38 description = "Utilities and helpers for writing Pylint plugins";
39 homepage = "https://github.com/django-tastypie/django-tastypie";
40 changelog = "https://github.com/django-tastypie/django-tastypie/releases/tag/v${version}";
41 license = licenses.gpl2Only;
42 maintainers = with maintainers; [ fab ];