mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 14:53:52 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
32 lines
682 B
Nix
32 lines
682 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = "3.2.2";
|
|
pname = "django-cache-url";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "epicserve";
|
|
repo = "django-cache-url";
|
|
rev = "v${version}";
|
|
sha256 = "0fxma2w6zl3cfl6wnynmlmp8snks67ffz4jcq4qmdc65xv1l204l";
|
|
};
|
|
|
|
postPatch = ''
|
|
# disable coverage tests
|
|
sed -i '/--cov/d' setup.cfg
|
|
'';
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/epicserve/django-cache-url";
|
|
description = "Use Cache URLs in your Django application";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.costrouc ];
|
|
};
|
|
}
|