My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/colanderalchemy/default.nix

27 lines
577 B

{ lib
, buildPythonPackage
, fetchPypi
, 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;
};
}