about summary refs log tree commit diff
path: root/nixpkgs
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2020-01-17 02:22:28 +0000
committerAlyssa Ross <hi@alyssa.is>2020-01-17 03:16:53 +0000
commitf69898c7d5b757342e6ab90d5fcc7c9aea9f5ff4 (patch)
treea17de6910bac192617c22beb40b49aa47b7b8b89 /nixpkgs
parentad50b532eeca075c442e8df75859240e00fe3afc (diff)
downloadnixlib-f69898c7d5b757342e6ab90d5fcc7c9aea9f5ff4.tar
nixlib-f69898c7d5b757342e6ab90d5fcc7c9aea9f5ff4.tar.gz
nixlib-f69898c7d5b757342e6ab90d5fcc7c9aea9f5ff4.tar.bz2
nixlib-f69898c7d5b757342e6ab90d5fcc7c9aea9f5ff4.tar.lz
nixlib-f69898c7d5b757342e6ab90d5fcc7c9aea9f5ff4.tar.xz
nixlib-f69898c7d5b757342e6ab90d5fcc7c9aea9f5ff4.tar.zst
nixlib-f69898c7d5b757342e6ab90d5fcc7c9aea9f5ff4.zip
python3.pkgs.postorius: 1.3.1 -> 1.3.2
Diffstat (limited to 'nixpkgs')
-rw-r--r--nixpkgs/pkgs/servers/mail/mailman/postorius.nix11
1 files changed, 3 insertions, 8 deletions
diff --git a/nixpkgs/pkgs/servers/mail/mailman/postorius.nix b/nixpkgs/pkgs/servers/mail/mailman/postorius.nix
index 194682f28211..bcb92051fc8a 100644
--- a/nixpkgs/pkgs/servers/mail/mailman/postorius.nix
+++ b/nixpkgs/pkgs/servers/mail/mailman/postorius.nix
@@ -4,23 +4,18 @@
 
 buildPythonPackage rec {
   pname = "postorius";
-  version = "1.3.1";
+  version = "1.3.2";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "027k70p1a4glskymbw4vw3fj460a9ipgcnns7xidp604s1fwz7lx";
+    sha256 = "0wrm0hda7ym9qaygxirqaaii66ndmgyy7gx8wqdg07pfx14zcyja";
   };
 
   propagatedBuildInputs = [ django-mailman3 readme_renderer ];
   checkInputs = [ beautifulsoup4 vcrpy mock ];
 
-  # The test suite is broken. :-( There are tons of failed attempts to connect
-  # to some local service. I'm not sure what is going on. Needs debugging.
+  # Tries to connect to database.
   doCheck = false;
-  checkPhase = ''
-    cd $NIX_BUILD_TOP/$sourceRoot
-    PYTHONPATH=.:$PYTHONPATH python example_project/manage.py test --settings=test_settings postorius
-  '';
 
   meta = {
     homepage = https://www.gnu.org/software/mailman/;