summary refs log tree commit diff
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2020-06-04 17:24:31 -0400
committerJon <jonringer@users.noreply.github.com>2020-06-04 14:45:44 -0700
commit86990d60071a3be8ea25d2ad2f79a0ba096331b6 (patch)
tree2626ccd6c1581b9af0d4379cd179341b727af8b1
parent9ef0636f1598a16d247cec6a4ec6893821631654 (diff)
downloadnixpkgs-86990d60071a3be8ea25d2ad2f79a0ba096331b6.tar
nixpkgs-86990d60071a3be8ea25d2ad2f79a0ba096331b6.tar.gz
nixpkgs-86990d60071a3be8ea25d2ad2f79a0ba096331b6.tar.bz2
nixpkgs-86990d60071a3be8ea25d2ad2f79a0ba096331b6.tar.lz
nixpkgs-86990d60071a3be8ea25d2ad2f79a0ba096331b6.tar.xz
nixpkgs-86990d60071a3be8ea25d2ad2f79a0ba096331b6.tar.zst
nixpkgs-86990d60071a3be8ea25d2ad2f79a0ba096331b6.zip
pythonPackages.wtforms: 2.1 -> 2.3.1
2.1 is from 2015!
https://github.com/wtforms/wtforms/blob/master/CHANGES.rst
-rw-r--r--pkgs/development/python-modules/wtforms/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/wtforms/default.nix b/pkgs/development/python-modules/wtforms/default.nix
index 98c3b1be93b..410abbbb622 100644
--- a/pkgs/development/python-modules/wtforms/default.nix
+++ b/pkgs/development/python-modules/wtforms/default.nix
@@ -1,29 +1,29 @@
 { stdenv
 , buildPythonPackage
 , fetchPypi
-, Babel
+, markupsafe
 }:
 
 buildPythonPackage rec {
-  version = "2.1";
-  pname = "wtforms";
+  version = "2.3.1";
+  pname = "WTForms";
 
   src = fetchPypi {
     inherit pname version;
-    extension = "zip";
-    sha256 = "0vyl26y9cg409cfyj8rhqxazsdnd0jipgjw06civhrd53yyi1pzz";
+    sha256 = "0whrd9cqhlibm31yqhvhp9illddxf0cpgcn3v806f7ajmsri66l6";
   };
 
+  propagatedBuildInputs = [ markupsafe ];
+
   # Django tests are broken "django.core.exceptions.AppRegistryNotReady: Apps aren't loaded yet."
-  # This is fixed in master I believe but not yet in 2.1;
   doCheck = false;
 
-  propagatedBuildInputs = [ Babel ];
-
   meta = with stdenv.lib; {
-    homepage = "https://github.com/wtforms/wtforms";
     description = "A flexible forms validation and rendering library for Python";
+    homepage = "https://github.com/wtforms/wtforms";
+    changelog = "https://github.com/wtforms/wtforms/blob/${version}/CHANGES.rst";
     license = licenses.bsd3;
+    maintainers = [ maintainers.bhipple ];
   };
 
 }