mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages: add ColanderAlchemy, generator for colander schemas from sqlalchemy models
This commit is contained in:
parent
675f293a81
commit
552bac195a
1 changed files with 23 additions and 0 deletions
|
@ -936,6 +936,29 @@ pythonPackages = modules // import ./python-packages-generated.nix {
|
|||
};
|
||||
};
|
||||
|
||||
|
||||
ColanderAlchemy = buildPythonPackage rec {
|
||||
name = "ColanderAlchemy-0.2.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/C/ColanderAlchemy/${name}.tar.gz";
|
||||
md5 = "b054837bd2753cbf15f7d5028cba421b";
|
||||
};
|
||||
|
||||
buildInputs = [ unittest2 ];
|
||||
propagatedBuildInputs = [ colander sqlalchemy8 ];
|
||||
|
||||
# string: argument name cannot be overridden via info kwarg.
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Autogenerate Colander schemas based on SQLAlchemy models.";
|
||||
homepage = https://github.com/stefanofontanelli/ColanderAlchemy;
|
||||
license = pkgs.lib.licenses.mit;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
configobj = buildPythonPackage (rec {
|
||||
name = "configobj-4.7.2";
|
||||
|
||||
|
|
Loading…
Reference in a new issue