Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / djangorestframework-camel-case / default.nix
blobc9bfc512b7386faf2565e58281f13ac5224c95a9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , djangorestframework
5 , six
6 }:
8 buildPythonPackage rec {
9   pname = "djangorestframework-camel-case";
10   version = "1.4.2";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-za51hGZIq7ZYXHRwY5odL7Bk3EX46LYqqlC+fxp6YfQ=";
16   };
18   propagatedBuildInputs = [
19     djangorestframework
20   ];
22   nativeCheckInputs = [
23     six
24   ];
26   # tests are only on GitHub but there are no tags
27   # https://github.com/vbabiy/djangorestframework-camel-case/issues/116
28   doCheck = false;
30   pythonImportsCheck = [ "djangorestframework_camel_case" ];
32   meta = with lib; {
33     description = "Camel case JSON support for Django REST framework";
34     homepage = "https://github.com/vbabiy/djangorestframework-camel-case";
35     license = licenses.bsd3;
36     maintainers = with maintainers; [ ];
37   };