pythonPackages.python-lzf: init at 0.2.4
This commit is contained in:
parent
c2ae05d597
commit
11b52e4046
2 changed files with 20 additions and 0 deletions
18
pkgs/development/python-modules/python-lzf/default.nix
Normal file
18
pkgs/development/python-modules/python-lzf/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
version = "0.2.4";
|
||||
pname = "python-lzf";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1l8m6vzwm1m8hn7ldw8j8r2b6r199k8z3q0wnhdyy4p68hahyhni";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "liblzf python bindings";
|
||||
homepage = https://github.com/teepark/python-lzf;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -2888,6 +2888,8 @@ in {
|
|||
inherit (pkgs) meson pkgconfig;
|
||||
};
|
||||
|
||||
python-lzf = callPackage ../development/python-modules/python-lzf { };
|
||||
|
||||
pyramid = callPackage ../development/python-modules/pyramid { };
|
||||
|
||||
pyramid_beaker = callPackage ../development/python-modules/pyramid_beaker { };
|
||||
|
|
Loading…
Reference in a new issue