Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 19 lines 465 B view raw
1{ lib, buildPythonPackage, fetchPypi, django }: 2 3buildPythonPackage rec { 4 pname = "django-picklefield"; 5 version = "2.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "f1733a8db1b6046c0d7d738e785f9875aa3c198215de11993463a9339aa4ea24"; 10 }; 11 12 propagatedBuildInputs = [ django ]; 13 14 meta = { 15 description = "A pickled object field for Django"; 16 homepage = https://github.com/gintas/django-picklefield; 17 license = lib.licenses.mit; 18 }; 19}