depot/third_party/nixpkgs/pkgs/development/python-modules/colander/default.nix
Default email 58f8944c92 Project import generated by Copybara.
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
2020-09-24 23:45:31 -05:00

21 lines
650 B
Nix

{ lib, buildPythonPackage, fetchPypi
, translationstring, iso8601, enum34 }:
buildPythonPackage rec {
pname = "colander";
version = "1.8.2";
src = fetchPypi {
inherit pname version;
sha256 = "54878d2ffd1afb020daca6cd5c6cfe6c0e44d0069fc825d57fe59aa6e4f6a499";
};
propagatedBuildInputs = [ translationstring iso8601 enum34 ];
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; [ domenkozar ];
};
}