logilab-constraint: move to python-modules

This commit is contained in:
Samuel Leathers
2017-09-16 20:48:37 -04:00
parent 21e135c8bd
commit 4db4f70be6
2 changed files with 24 additions and 19 deletions

View File

@@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi, logilab_common, six }:
buildPythonPackage rec {
pname = "logilab-constraint";
version = "0.6.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1n0xim4ij1n4yvyqqvyc0wllhjs22szglsd5av0j8k2qmck4njcg";
};
propagatedBuildInputs = [
logilab_common six
];
meta = with stdenv.lib; {
description = "logilab-database provides some classes to make unified access to different";
homepage = "http://www.logilab.org/project/logilab-database";
};
}