logilab_common: 0.63.2 -> 1.4.1

This commit is contained in:
Samuel Leathers
2017-09-16 21:14:11 -04:00
parent 4db4f70be6
commit dce4276d5e
2 changed files with 25 additions and 10 deletions

View File

@@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi, unittest2, six }:
buildPythonPackage rec {
pname = "logilab-common";
version = "1.4.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "02in5555iak50gzn35bnnha9s85idmh0wwxaxz13v81z5krn077d";
};
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.lgpl;
};
}