summary refs log tree commit diff
path: root/pkgs/development/python-modules/colanderalchemy/default.nix
blob: a5b29af1c31a3c7ba958e04a0090a71f2f370704 (plain) (blame)
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
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, unittest2
, colander
, sqlalchemy
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "006wcfch2skwvma9bq3l06dyjnz309pa75h1rviq7i4pd9g463bl";
  };

  propagatedBuildInputs = [ colander sqlalchemy ];

  # Tests are not included in Pypi
  doCheck = false;

  meta = with lib; {
    description = "Autogenerate Colander schemas based on SQLAlchemy models";
    homepage = "https://github.com/stefanofontanelli/ColanderAlchemy";
    license = licenses.mit;
  };
}