about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-lzf/default.nix
blob: d7548fd8446f1631b11692802323b7e7b98c9f77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  version = "0.2.4";
  format = "setuptools";
  pname = "python-lzf";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1l8m6vzwm1m8hn7ldw8j8r2b6r199k8z3q0wnhdyy4p68hahyhni";
  };

  meta = with lib; {
    description = "liblzf python bindings";
    homepage = "https://github.com/teepark/python-lzf";
    license = licenses.mit;
    platforms = platforms.unix;
  };
}