pythonPackages.pydenticon: refactor move to python-modules
This commit is contained in:
25
pkgs/development/python-modules/pydenticon/default.nix
Normal file
25
pkgs/development/python-modules/pydenticon/default.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pillow
|
||||
, mock
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pydenticon";
|
||||
version = "0.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "035dawcspgjw2rksbnn863s7b0i9ac8cc1nshshvd1l837ir1czp";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user