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