fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
23 lines
454 B
Nix
23 lines
454 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lazy";
|
|
version = "1.4";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2c6d27a5ab130fb85435320651a47403adcb37ecbcc501b0c6606391f65f5b43";
|
|
extension = "zip";
|
|
};
|
|
|
|
meta = {
|
|
description = "Lazy attributes for Python objects";
|
|
license = lib.licenses.bsd2;
|
|
homepage = "https://github.com/stefanholek/lazy";
|
|
};
|
|
}
|