evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / django-cors-headers / default.nix
blob6271f6ade6f41c9dbbb2f55e053aeb59033a3b6f
2   lib,
3   fetchFromGitHub,
4   buildPythonPackage,
5   setuptools,
6   django,
7   pytest-django,
8   pytestCheckHook,
9 }:
11 buildPythonPackage rec {
12   pname = "django-cors-headers";
13   version = "4.4.0";
14   pyproject = true;
16   src = fetchFromGitHub {
17     owner = "adamchainz";
18     repo = pname;
19     rev = version;
20     hash = "sha256-/uTQ09zIjRV1Ilb/mXyr4zn5tJI/mNFHpfql2ptuER4=";
21   };
23   build-system = [ setuptools ];
25   dependencies = [ django ];
27   nativeCheckInputs = [
28     pytest-django
29     pytestCheckHook
30   ];
32   pythonImportsCheck = [ "corsheaders" ];
34   meta = with lib; {
35     description = "Django app for handling server Cross-Origin Resource Sharing (CORS) headers";
36     homepage = "https://github.com/OttoYiu/django-cors-headers";
37     license = licenses.mit;
38     maintainers = [ ];
39   };