Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, 2 marshmallow, sqlalchemy 3}: 4 5buildPythonPackage rec { 6 pname = "marshmallow-sqlalchemy"; 7 version = "0.16.0"; 8 9 meta = { 10 homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy"; 11 description = "SQLAlchemy integration with marshmallow "; 12 license = lib.licenses.mit; 13 }; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "c99d51bb4dfca7e1b35ae12ed96746c0df0464b7eb95bba6835a1231e6ea286c"; 18 }; 19 20 propagatedBuildInputs = [ marshmallow sqlalchemy ]; 21 22 doCheck = false; 23}