2017-09-16 18:14:11 -07:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, unittest2, six }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "logilab-common";
|
2019-11-19 06:35:37 -08:00
|
|
|
version = "1.4.4";
|
2017-09-16 18:14:11 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-11-19 06:35:37 -08:00
|
|
|
sha256 = "8c1bf26431a3b487940cd4a7c0eefde328f5ff7098222ee695805752dae94aa6";
|
2017-09-16 18:14:11 -07: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-18 16:39:02 -07:00
|
|
|
license = licenses.lgpl21;
|
2017-09-16 18:14:11 -07:00
|
|
|
};
|
|
|
|
}
|