about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyserial-asyncio/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyserial-asyncio/default.nix')
-rw-r--r--pkgs/development/python-modules/pyserial-asyncio/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pyserial-asyncio/default.nix b/pkgs/development/python-modules/pyserial-asyncio/default.nix
index cf90275cd19ca..5e721504eda59 100644
--- a/pkgs/development/python-modules/pyserial-asyncio/default.nix
+++ b/pkgs/development/python-modules/pyserial-asyncio/default.nix
@@ -3,13 +3,13 @@
 
 buildPythonPackage rec {
   pname = "pyserial-asyncio";
-  version = "0.4";
+  version = "0.5";
 
   disabled = !isPy3k; # Doesn't support python older than 3.4
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "1vlsb0d03krxlj7vpvyhpinnyxyy8s3lk5rs8ba2932dhyl7f1n4";
+    sha256 = "1641e5433a866eeaf6464b3ab88b741e7a89dd8cd0f851b3343b15f425138d33";
   };
 
   propagatedBuildInputs = [ pyserial ];