about summary refs log tree commit diff
path: root/pkgs/development/python-modules/logilab/constraint.nix
blob: 9168d2ef8b06ab400ac13e37308e30a37733a618 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildPythonPackage, fetchPypi, logilab-common, six }:

buildPythonPackage rec {
  pname = "logilab-constraint";
  version = "0.6.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-Jk6wvvcDEeHfy7dUcjbnzFIeGBYm5tXzCI26yy+t2qs=";
  };

  propagatedBuildInputs = [
    logilab-common six
  ];


  meta = with lib; {
    description = "logilab-database provides some classes to make unified access to different";
    homepage = "https://www.logilab.org/project/logilab-database";
  };
}