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 name = "${pname}-${version}"; 8 version = "0.13.1"; 9 10 meta = { 11 homepage = "https://github.com/marshmallow-code/marshmallow-sqlalchemy"; 12 description = "SQLAlchemy integration with marshmallow "; 13 license = lib.licenses.mit; 14 }; 15 16 src = fetchPypi { 17 inherit pname version; 18 sha256 = "0082ca2wwc9bymzkp1mr1l5h6rq0k1csv3vcq8ab24x0hdyg5qgk"; 19 }; 20 21 propagatedBuildInputs = [ marshmallow sqlalchemy ]; 22 23 doCheck = false; 24}