blob: 390784d03a752651cf3c27d3035494d70ea032d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
lib,
buildPythonPackage,
django,
fetchFromGitHub,
pytest-cov-stub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "django-cache-url";
version = "3.4.5";
pyproject = true;
src = fetchFromGitHub {
owner = "epicserve";
repo = "django-cache-url";
tag = "v${version}";
hash = "sha256-SjTcBYaFMD8XwIlqOgoJrc30FLrpX+M2ZcvZzA9ou6g=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
django
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "django_cache_url" ];
meta = {
description = "Use Cache URLs in your Django application";
homepage = "https://github.com/epicserve/django-cache-url";
changelog = "https://github.com/epicserve/django-cache-url/blob/v${version}/CHANGELOG.rst";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|