1{ stdenv, buildPythonPackage, fetchPypi, unittest2, six }: 2 3buildPythonPackage rec { 4 pname = "logilab-common"; 5 version = "1.4.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "cdda9ed0deca7c68f87f7a404ad742e47aaa1ca5956d12988236a5ec3bda13a0"; 10 }; 11 12 propagatedBuildInputs = [ unittest2 six ]; 13 14 # package supports 3.x but tests require egenix-mx-base which is python 2.x only 15 # and is not currently in nixos 16 doCheck = false; 17 18 meta = with stdenv.lib; { 19 description = "Python packages and modules used by Logilab "; 20 homepage = https://www.logilab.org/project/logilab-common; 21 license = licenses.lgpl21; 22 }; 23}