2017-09-17 02:14:11 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, unittest2, six }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "logilab-common";
|
2018-07-22 11:12:46 +01:00
|
|
|
version = "1.4.2";
|
2017-09-17 02:14:11 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-22 11:12:46 +01:00
|
|
|
sha256 = "cdda9ed0deca7c68f87f7a404ad742e47aaa1ca5956d12988236a5ec3bda13a0";
|
2017-09-17 02:14:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
2017-09-19 00:39:02 +01:00
|
|
|
license = licenses.lgpl21;
|
2017-09-17 02:14:11 +01:00
|
|
|
};
|
|
|
|
}
|