2018-03-18 14:47:04 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
2018-10-24 17:31:53 +01:00
|
|
|
, translationstring, iso8601, enum34 }:
|
2018-03-18 14:47:04 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "colander";
|
2018-10-24 17:31:53 +01:00
|
|
|
version = "1.5.1";
|
2018-03-18 14:47:04 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-10-24 17:31:53 +01:00
|
|
|
sha256 = "18ah4cwwxnpm6qxi6x9ipy51dal4spd343h44s5wd01cnhgrwsyq";
|
2018-03-18 14:47:04 +00:00
|
|
|
};
|
|
|
|
|
2018-10-24 17:31:53 +01:00
|
|
|
propagatedBuildInputs = [ translationstring iso8601 enum34 ];
|
2018-03-18 14:47:04 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A simple schema-based serialization and deserialization library";
|
|
|
|
homepage = https://docs.pylonsproject.org/projects/colander/en/latest/;
|
|
|
|
license = licenses.free; # http://repoze.org/LICENSE.txt
|
|
|
|
maintainers = with maintainers; [ garbas domenkozar ];
|
|
|
|
};
|
|
|
|
}
|