nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.virtual-display: move expression

(cherry picked from commit 7076991eec964534ff146bd5af7f772028152d1b)

+21 -17
+20
pkgs/development/python-modules/virtual-display/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, EasyProcess }: 2 + 3 + buildPythonPackage rec { 4 + pname = "PyVirtualDisplay"; 5 + version = "0.1.5"; 6 + 7 + propagatedBuildInputs = [ EasyProcess ]; 8 + 9 + src = fetchPypi { 10 + inherit pname version; 11 + sha256 = "aa6aef08995e14c20cc670d933bfa6e70d736d0b555af309b2e989e2faa9ee53"; 12 + }; 13 + 14 + meta = with lib; { 15 + description = "Python wrapper for Xvfb, Xephyr and Xvnc"; 16 + homepage = "https://github.com/ponty/pyvirtualdisplay"; 17 + license = licenses.bsdOriginal; 18 + maintainers = with maintainers; [ layus ]; 19 + }; 20 + }
+1 -17
pkgs/top-level/python-packages.nix
··· 17368 17368 17369 17369 virtkey = callPackage ../development/python-modules/virtkey { }; 17370 17370 17371 - virtual-display = buildPythonPackage rec { 17372 - name = "PyVirtualDisplay-0.1.5"; 17373 - 17374 - propagatedBuildInputs = with self; [ EasyProcess ]; 17375 - 17376 - src = pkgs.fetchurl { 17377 - url = "mirror://pypi/P/PyVirtualDisplay/${name}.tar.gz"; 17378 - sha256 = "aa6aef08995e14c20cc670d933bfa6e70d736d0b555af309b2e989e2faa9ee53"; 17379 - }; 17380 - 17381 - meta = { 17382 - description = "Python wrapper for Xvfb, Xephyr and Xvnc"; 17383 - homepage = "https://github.com/ponty/pyvirtualdisplay"; 17384 - license = licenses.bsdOriginal; 17385 - maintainers = with maintainers; [ layus ]; 17386 - }; 17387 - }; 17371 + virtual-display = callPackage ../development/python-modules/virtual-display { }; 17388 17372 17389 17373 virtualenv = callPackage ../development/python-modules/virtualenv { }; 17390 17374