summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-10-24 09:31:53 -0700
committerSilvan Mosberger <infinisil@icloud.com>2018-10-27 01:52:13 +0200
commit45b93edc637cd9201dd27c29e005d1c08eafe7f3 (patch)
tree6bbfe5ea47365efd56bc14e7112b4d0a33a1af02 /pkgs/development/python-modules
parent86c7662be0a2cef3d1d6f152e84ff436129dd2c1 (diff)
downloadnixlib-45b93edc637cd9201dd27c29e005d1c08eafe7f3.tar
nixlib-45b93edc637cd9201dd27c29e005d1c08eafe7f3.tar.gz
nixlib-45b93edc637cd9201dd27c29e005d1c08eafe7f3.tar.bz2
nixlib-45b93edc637cd9201dd27c29e005d1c08eafe7f3.tar.lz
nixlib-45b93edc637cd9201dd27c29e005d1c08eafe7f3.tar.xz
nixlib-45b93edc637cd9201dd27c29e005d1c08eafe7f3.tar.zst
nixlib-45b93edc637cd9201dd27c29e005d1c08eafe7f3.zip
python36Packages.colander: 1.4 -> 1.5.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-colander/versions
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/colander/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/colander/default.nix b/pkgs/development/python-modules/colander/default.nix
index ed27464d1fe0..5cfa1862f48b 100644
--- a/pkgs/development/python-modules/colander/default.nix
+++ b/pkgs/development/python-modules/colander/default.nix
@@ -1,16 +1,16 @@
 { lib, buildPythonPackage, fetchPypi
-, translationstring, iso8601 }:
+, translationstring, iso8601, enum34 }:
 
 buildPythonPackage rec {
   pname = "colander";
-  version = "1.4";
+  version = "1.5.1";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "e20e9acf190e5711cf96aa65a5405dac04b6e841028fc361d953a9923dbc4e72";
+    sha256 = "18ah4cwwxnpm6qxi6x9ipy51dal4spd343h44s5wd01cnhgrwsyq";
   };
 
-  propagatedBuildInputs = [ translationstring iso8601 ];
+  propagatedBuildInputs = [ translationstring iso8601 enum34 ];
 
   meta = with lib; {
     description = "A simple schema-based serialization and deserialization library";