Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 650 B view raw
1{ lib, buildPythonPackage, fetchPypi 2, translationstring, iso8601, enum34 }: 3 4buildPythonPackage rec { 5 pname = "colander"; 6 version = "1.8.2"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "54878d2ffd1afb020daca6cd5c6cfe6c0e44d0069fc825d57fe59aa6e4f6a499"; 11 }; 12 13 propagatedBuildInputs = [ translationstring iso8601 enum34 ]; 14 15 meta = with lib; { 16 description = "A simple schema-based serialization and deserialization library"; 17 homepage = "https://docs.pylonsproject.org/projects/colander/en/latest/"; 18 license = licenses.free; # http://repoze.org/LICENSE.txt 19 maintainers = with maintainers; [ domenkozar ]; 20 }; 21}