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