8 buildPythonPackage rec {
9 pname = "virtualenv-clone";
11 format = "setuptools";
13 src = fetchFromGitHub {
14 owner = "edwardgeorge";
17 sha256 = "sha256-qrN74IwLRqiVPxU8gVhdiM34yBmiS/5ot07uroYPDVw=";
21 substituteInPlace tests/__init__.py \
22 --replace "'virtualenv'" "'${virtualenv}/bin/virtualenv'"
24 substituteInPlace tests/test_virtualenv_sys.py \
25 --replace "'virtualenv'" "'${virtualenv}/bin/virtualenv'"
28 propagatedBuildInputs = [
37 homepage = "https://github.com/edwardgeorge/virtualenv-clone";
38 description = "Script to clone virtualenvs";
39 license = licenses.mit;
40 maintainers = with maintainers; [ ];