Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 19 lines 455 B view raw
1{ lib, buildPythonPackage, fetchPypi, django }: 2 3buildPythonPackage rec { 4 pname = "django-picklefield"; 5 version = "2.1.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0imncys5s3vsy2q79nn7k5d670da1xgmcr9gmhn06fry6ibf39b7"; 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}