evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / development / python-modules / django-cache-url / default.nix
blob89fdb9df9d83ff1390fc94046121e4c5125df9fb
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   version = "3.2.2";
10   format = "setuptools";
11   pname = "django-cache-url";
13   src = fetchFromGitHub {
14     owner = "epicserve";
15     repo = "django-cache-url";
16     rev = "v${version}";
17     sha256 = "0fxma2w6zl3cfl6wnynmlmp8snks67ffz4jcq4qmdc65xv1l204l";
18   };
20   postPatch = ''
21     # disable coverage tests
22     sed -i '/--cov/d' setup.cfg
23   '';
25   nativeCheckInputs = [ pytestCheckHook ];
27   meta = with lib; {
28     homepage = "https://github.com/epicserve/django-cache-url";
29     description = "Use Cache URLs in your Django application";
30     license = licenses.mit;
31     maintainers = [ ];
32   };