Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 27 lines 620 B view raw
1{ lib, buildPythonPackage, fetchPypi, 2 dateutil, simplejson, isPy27 3}: 4 5buildPythonPackage rec { 6 pname = "marshmallow"; 7 version = "3.10.0"; 8 disabled = isPy27; 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 = "4ab2fdb7f36eb61c3665da67a7ce281c8900db08d72ba6bf0e695828253581f7"; 22 }; 23 24 propagatedBuildInputs = [ dateutil simplejson ]; 25 26 doCheck = false; 27}