My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/lazy/default.nix

21 lines
424 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "lazy";
version = "1.4";
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";
};
}