Merge pull request #174568 from SuperSandro2000/djangorestframework-camel-case

python310Packages.djangorestframework-camel-case: init at 1.3.0

authored by Sandro and committed by GitHub bc035f67 7d4b9caf

+39
+37
pkgs/development/python-modules/djangorestframework-camel-case/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , djangorestframework 5 + , six 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "djangorestframework-camel-case"; 10 + version = "1.3.0"; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + sha256 = "sha256-31kTYv+kSMjwo1TFauilP7eruxXiIpUdDG9feBYzkH4="; 15 + }; 16 + 17 + propagatedBuildInputs = [ 18 + djangorestframework 19 + ]; 20 + 21 + checkInputs = [ 22 + six 23 + ]; 24 + 25 + # tests are only on GitHub but there are no tags 26 + # https://github.com/vbabiy/djangorestframework-camel-case/issues/116 27 + doCheck = false; 28 + 29 + pythonImportsCheck = [ "djangorestframework_camel_case" ]; 30 + 31 + meta = with lib; { 32 + description = "Camel case JSON support for Django REST framework"; 33 + homepage = "https://github.com/vbabiy/djangorestframework-camel-case"; 34 + license = licenses.bsd3; 35 + maintainers = with maintainers; [ SuperSandro2000 ]; 36 + }; 37 + }
+2
pkgs/top-level/python-packages.nix
··· 2392 2392 2393 2393 djangorestframework-dataclasses = callPackage ../development/python-modules/djangorestframework-dataclasses { }; 2394 2394 2395 + djangorestframework-camel-case = callPackage ../development/python-modules/djangorestframework-camel-case { }; 2396 + 2395 2397 djangorestframework-simplejwt = callPackage ../development/python-modules/djangorestframework-simplejwt { }; 2396 2398 2397 2399 django_reversion = callPackage ../development/python-modules/django_reversion { };