python.pkgs.lazy: init at 1.4
This commit is contained in:
parent
f3a693122c
commit
418b67bad8
2 changed files with 23 additions and 0 deletions
21
pkgs/development/python-modules/lazy/default.nix
Normal file
21
pkgs/development/python-modules/lazy/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ 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";
|
||||
};
|
||||
}
|
|
@ -3069,6 +3069,8 @@ in {
|
|||
|
||||
latexcodec = callPackage ../development/python-modules/latexcodec {};
|
||||
|
||||
lazy = callPackage ../development/python-modules/lazy { };
|
||||
|
||||
libmodulemd = pipe pkgs.libmodulemd [
|
||||
toPythonModule
|
||||
|
||||
|
|
Loading…
Reference in a new issue