Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 20 lines 522 B view raw
1{ lib, buildPythonPackage, fetchPypi, requests, requests_oauthlib 2, django, python3-openid }: 3 4buildPythonPackage rec { 5 pname = "django-paintstore"; 6 version = "0.2"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "12wxgwv1qbkfq7w5i7bm7aidv655c2sxp0ym73qf8606dxbjcwwg"; 11 }; 12 13 doCheck = false; 14 15 meta = with lib; { 16 description = "Django app that integrates jQuery ColorPicker with the Django admin"; 17 homepage = "https://github.com/gsiegman/django-paintstore"; 18 license = licenses.mit; 19 }; 20}