pythonPackages.pytest-ansible: refactor remove python3 restriction

This commit is contained in:
Chris Ostrouchov 2019-02-24 16:57:16 -05:00
parent d77c611162
commit 5c4a829a34
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573

View File

@ -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; {