Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / lazy / default.nix
blob1e5f72ff803c94a99f4948390fa1c662fc2c8039
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "lazy";
8   version = "1.4";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "2c6d27a5ab130fb85435320651a47403adcb37ecbcc501b0c6606391f65f5b43";
13     extension = "zip";
14   };
16   meta = {
17     description = "Lazy attributes for Python objects";
18     license = lib.licenses.bsd2;
19     homepage = "https://github.com/stefanholek/lazy";
20   };