summary refs log tree commit diff
path: root/pkgs/development/python-modules/pydenticon/default.nix
blob: db04991e6ebc0830e390497a3d10ae08b20c2218 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv
, buildPythonPackage
, fetchPypi
, pillow
, mock
}:

buildPythonPackage rec {
  pname = "pydenticon";
  version = "0.3.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "2ef363cdd6f4f0193ce62257486027e36884570f6140bbde51de72df321b77f1";
  };

  propagatedBuildInputs = [ pillow mock ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/azaghal/pydenticon";
    description = "Library for generating identicons. Port of Sigil (https://github.com/cupcake/sigil) with enhancements";
    license = licenses.bsd0;
  };

}