Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 28 lines 589 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, unittest2 5, colander 6, sqlalchemy 7}: 8 9buildPythonPackage rec { 10 pname = "ColanderAlchemy"; 11 version = "0.3.4"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "006wcfch2skwvma9bq3l06dyjnz309pa75h1rviq7i4pd9g463bl"; 16 }; 17 18 propagatedBuildInputs = [ colander sqlalchemy ]; 19 20 # Tests are not included in Pypi 21 doCheck = false; 22 23 meta = with lib; { 24 description = "Autogenerate Colander schemas based on SQLAlchemy models"; 25 homepage = "https://github.com/stefanofontanelli/ColanderAlchemy"; 26 license = licenses.mit; 27 }; 28}