Files
nixpkgs/pkgs/development/python-modules/colanderalchemy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
619 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
colander,
sqlalchemy,
}:
buildPythonPackage rec {
pname = "colanderclchemy";
version = "0.3.4";
format = "setuptools";
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;
};
}