1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "lazy";
9 version = "1.4";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "2c6d27a5ab130fb85435320651a47403adcb37ecbcc501b0c6606391f65f5b43";
15 extension = "zip";
16 };
17
18 meta = {
19 description = "Lazy attributes for Python objects";
20 license = lib.licenses.bsd2;
21 homepage = "https://github.com/stefanholek/lazy";
22 };
23}