summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiorun
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-03-16 23:49:42 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-03-16 22:06:15 -0700
commit8c44c8770347f19854a3905d847a0d58bf104eff (patch)
tree545ac1e001c9c7eece95f00262af76ed2c75df8f /pkgs/development/python-modules/aiorun
parentf766ac2baf57bfe6bf8eeaeec2f40c4d4e37d053 (diff)
downloadnixpkgs-8c44c8770347f19854a3905d847a0d58bf104eff.tar
nixpkgs-8c44c8770347f19854a3905d847a0d58bf104eff.tar.gz
nixpkgs-8c44c8770347f19854a3905d847a0d58bf104eff.tar.bz2
nixpkgs-8c44c8770347f19854a3905d847a0d58bf104eff.tar.lz
nixpkgs-8c44c8770347f19854a3905d847a0d58bf104eff.tar.xz
nixpkgs-8c44c8770347f19854a3905d847a0d58bf104eff.tar.zst
nixpkgs-8c44c8770347f19854a3905d847a0d58bf104eff.zip
python3Packages.aiorun: 2020.6.1 -> 2020.12.1
Diffstat (limited to 'pkgs/development/python-modules/aiorun')
-rw-r--r--pkgs/development/python-modules/aiorun/default.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/aiorun/default.nix b/pkgs/development/python-modules/aiorun/default.nix
index 9c677650555..414f8a6d9a6 100644
--- a/pkgs/development/python-modules/aiorun/default.nix
+++ b/pkgs/development/python-modules/aiorun/default.nix
@@ -1,25 +1,24 @@
 { lib
 , buildPythonPackage
 , fetchFromGitHub
-, isPy27
+, pythonOlder
 , pygments
 , pytestCheckHook
-, pytestcov
+, pytest-cov
 , uvloop
 }:
 
 buildPythonPackage rec {
   pname = "aiorun";
-  version = "2020.6.1";
+  version = "2020.12.1";
   format = "flit";
-
-  disabled = isPy27;
+  disabled = pythonOlder "3.5";
 
   src = fetchFromGitHub {
     owner = "cjrh";
     repo = pname;
     rev = "v${version}";
-    sha256 = "00mq5ylhhdfdqrh7zdqabf3wy85jrkqvgfb1421ll46fsjim2d14";
+    sha256 = "sha256-ktc2cmoPNYcsVyKCWs+ivhV5onywFIrdDRBiBKrdiF4=";
   };
 
   propagatedBuildInputs = [
@@ -28,7 +27,7 @@ buildPythonPackage rec {
 
   checkInputs = [
     pytestCheckHook
-    pytestcov
+    pytest-cov
     uvloop
   ];
 
@@ -43,6 +42,6 @@ buildPythonPackage rec {
     description = "Boilerplate for asyncio applications";
     homepage = "https://github.com/cjrh/aiorun";
     license = licenses.asl20;
-    maintainers = [ maintainers.costrouc ];
+    maintainers = with maintainers; [ costrouc ];
   };
 }