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

buildPythonPackage rec {
  pname = "lz4";
  version = "0.8.2";

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

  buildInputs = [ nose ];

  meta = with stdenv.lib; {
    description = "Compression library";
    homepage = https://github.com/python-lz4/python-lz4;
    license = licenses.bsd3;
  };

}