aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/colanderalchemy/default.nix
blob: aba5ebf609b885b9ee3c8bd0fd0cb0a6dc34f462 (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
{ 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 stdenv.lib; {
    description = "Autogenerate Colander schemas based on SQLAlchemy models";
    homepage = "https://github.com/stefanofontanelli/ColanderAlchemy";
    license = licenses.mit;
  };
}