Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pillow 5, mock 6}: 7 8buildPythonPackage rec { 9 pname = "pydenticon"; 10 version = "0.3.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "2ef363cdd6f4f0193ce62257486027e36884570f6140bbde51de72df321b77f1"; 15 }; 16 17 propagatedBuildInputs = [ pillow mock ]; 18 19 meta = with lib; { 20 homepage = "https://github.com/azaghal/pydenticon"; 21 description = "Library for generating identicons. Port of Sigil (https://github.com/cupcake/sigil) with enhancements"; 22 license = licenses.bsd0; 23 }; 24 25}