aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/colanderalchemy/default.nix
blob: 34e58e0927cd2733cbd9432d69d75b5d0300cbf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ stdenv
, buildPythonPackage
, fetchpatch
, fetchPypi
, unittest2
, colander
, sqlalchemy
}:

buildPythonPackage rec {
  pname = "ColanderAlchemy";
  version = "0.3.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "11wcni2xmfmy001rj62q2pwf305vvngkrfm5c4zlwvgbvlsrvnnw";
  };

  patches = [
    (fetchpatch {
        url = "https://github.com/stefanofontanelli/ColanderAlchemy/commit/b45fe35f2936a5ccb705e9344075191e550af6c9.patch";
        sha256 = "1kf278wjq49zd6fhpp55vdcawzdd107767shzfck522sv8gr6qvx";
    })
  ];

  buildInputs = [ unittest2 ];
  propagatedBuildInputs = [ colander sqlalchemy ];

  meta = with stdenv.lib; {
    description = "Autogenerate Colander schemas based on SQLAlchemy models";
    homepage = "https://github.com/stefanofontanelli/ColanderAlchemy";
    license = licenses.mit;
    # ColanderAlchemy's tests currently fail with colander >1.6.0
    # (see https://github.com/stefanofontanelli/ColanderAlchemy/issues/107)
    broken = versionOlder "1.6.0" colander.version;
  };

}