about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/logilab/common.nix
blob: 2dd997765cf39b5c561be724b8054add0507c440 (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
{ stdenv, buildPythonPackage, fetchPypi, unittest2, six }:

buildPythonPackage rec {
  pname = "logilab-common";
  version = "1.4.3";

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

  propagatedBuildInputs = [ unittest2 six ];

  # package supports 3.x but tests require egenix-mx-base which is python 2.x only
  # and is not currently in nixos
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Python packages and modules used by Logilab ";
    homepage = https://www.logilab.org/project/logilab-common;
    license = licenses.lgpl21;
  };
}