Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, 2 django, pillow 3}: 4 5buildPythonPackage rec { 6 pname = "easy-thumbnails"; 7 version = "2.6"; 8 9 meta = { 10 description = "Easy thumbnails for Django"; 11 homepage = https://github.com/SmileyChris/easy-thumbnails; 12 license = lib.licenses.bsd3; 13 }; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "23fbe3415c93b2369ece8ebdfb5faa05540943bef8b941b3118ce769ba95e275"; 18 }; 19 20 propagatedBuildInputs = [ django pillow ]; 21}