Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, 2 dateutil, simplejson 3}: 4 5buildPythonPackage rec { 6 pname = "marshmallow"; 7 name = "${pname}-${version}"; 8 version = "2.13.5"; 9 10 meta = { 11 homepage = "https://github.com/marshmallow-code/marshmallow"; 12 description = '' 13 A lightweight library for converting complex objects to and from 14 simple Python datatypes. 15 ''; 16 license = lib.licenses.mit; 17 }; 18 19 src = fetchPypi { 20 inherit pname version; 21 sha256 = "048rzdkvnais51xdiy27nail5vxjb4ggw3vd60prn1q11lf16wig"; 22 }; 23 24 propagatedBuildInputs = [ dateutil simplejson ]; 25 26 doCheck = false; 27}