Files
nixpkgs/pkgs/development/python-modules/colander/default.nix
T

22 lines
643 B
Nix
Raw Normal View History

2018-03-18 15:47:04 +01:00
{ lib, buildPythonPackage, fetchPypi
2018-10-24 09:31:53 -07:00
, translationstring, iso8601, enum34 }:
2018-03-18 15:47:04 +01:00
buildPythonPackage rec {
pname = "colander";
2018-10-24 09:31:53 -07:00
version = "1.5.1";
2018-03-18 15:47:04 +01:00
src = fetchPypi {
inherit pname version;
2018-10-24 09:31:53 -07:00
sha256 = "18ah4cwwxnpm6qxi6x9ipy51dal4spd343h44s5wd01cnhgrwsyq";
2018-03-18 15:47:04 +01:00
};
2018-10-24 09:31:53 -07:00
propagatedBuildInputs = [ translationstring iso8601 enum34 ];
2018-03-18 15:47:04 +01: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 ];
};
}