Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 613 B view raw
1{ stdenv, lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "django-webpack-loader"; 5 version = "0.6.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "087mspmx74qbcknpbksl66rsyin0dc5aglhjmmpk999pl2wvdfk0"; 10 }; 11 12 # django.core.exceptions.ImproperlyConfigured (path issue with DJANGO_SETTINGS_MODULE?) 13 doCheck = false; 14 15 meta = with lib; { 16 description = "Use webpack to generate your static bundles"; 17 homepage = https://github.com/owais/django-webpack-loader; 18 maintainers = with maintainers; [ peterromfeldhk ]; 19 license = with licenses; [ mit ]; 20 }; 21}