about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-ansible
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2019-02-24 16:57:16 -0500
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2019-03-01 14:47:01 -0500
commit5c4a829a340aec6f44b040452391fc837218ba1f (patch)
tree6ed08fb5fdc4f6c82c1bf75968417490ee1f1e2d /pkgs/development/python-modules/pytest-ansible
parentd77c6111626fe60518ae48d8d586bfaa76c5a952 (diff)
pythonPackages.pytest-ansible: refactor remove python3 restriction
Diffstat (limited to 'pkgs/development/python-modules/pytest-ansible')
-rw-r--r--pkgs/development/python-modules/pytest-ansible/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pytest-ansible/default.nix b/pkgs/development/python-modules/pytest-ansible/default.nix
index acdd0e36cdbff..77ea742387e83 100644
--- a/pkgs/development/python-modules/pytest-ansible/default.nix
+++ b/pkgs/development/python-modules/pytest-ansible/default.nix
@@ -8,9 +8,8 @@
 }:
 
 buildPythonPackage rec {
-  version = "2.0.2";
   pname = "pytest-ansible";
-  disabled = isPy3k;
+  version = "2.0.2";
 
   src = fetchPypi {
     inherit pname version;
@@ -30,7 +29,7 @@ buildPythonPackage rec {
   doCheck = false;
 
   checkPhase = ''
-    pytest tests
+    pytest
   '';
 
   meta = with stdenv.lib; {