python39Packages.virtualenv-clone: update meta, remove test only depedencies

This commit is contained in:
Sandro Jäckel 2021-08-26 14:08:50 +02:00
parent bd28b13dbd
commit 2f70710982
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

@ -1,7 +1,6 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, virtualenv
}:
@ -14,16 +13,15 @@ buildPythonPackage rec {
sha256 = "997c7d225eabc4d09e77672461f4bdf9f3a8ea9dc9e4a847b0e83dc8bad9573a";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ virtualenv ];
# needs tox to run the tests
# tests are not included in pypi tarball and no module to import
doCheck = false;
meta = with lib; {
homepage = "https://github.com/edwardgeorge/virtualenv-clone";
description = "Script to clone virtualenvs";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}