Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 23 lines 538 B view raw
1{ lib, buildPythonPackage, fetchPypi, 2 marshmallow, sqlalchemy 3}: 4 5buildPythonPackage rec { 6 pname = "marshmallow-sqlalchemy"; 7 version = "0.17.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 = "17pnbv28n9vy3q66ckxfdbb9k1riy6s8lg63zfm5jsx00f0zqqnn"; 18 }; 19 20 propagatedBuildInputs = [ marshmallow sqlalchemy ]; 21 22 doCheck = false; 23}