mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
pythonPackages.asyncio: refactor disable for anything but 34
This commit is contained in:
parent
c38fb3f89c
commit
ef66dfe40c
@ -1,9 +1,9 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder }:
|
||||
{ stdenv, buildPythonPackage, fetchPypi, isPy34 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "asyncio";
|
||||
version = "3.4.3";
|
||||
disabled = pythonOlder "3.3";
|
||||
disabled = !isPy34;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
Loading…
Reference in New Issue
Block a user