Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 21 lines 479 B view raw
1{ lib, buildPythonPackage, fetchPypi, 2 django, pillow 3}: 4 5buildPythonPackage rec { 6 pname = "easy-thumbnails"; 7 version = "2.7.1"; 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 = "f862949208d9066cd3d84ffcf9c2dbe9c7344ea6152b741e440f861eca46855c"; 18 }; 19 20 propagatedBuildInputs = [ django pillow ]; 21}