lol

python310Packages.pyvirtualdisplay: Normalize attribute, pname, dirname

+10 -8
+3 -2
pkgs/development/python-modules/PyVirtualDisplay/default.nix pkgs/development/python-modules/pyvirtualdisplay/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, EasyProcess }: 2 2 3 3 buildPythonPackage rec { 4 - pname = "PyVirtualDisplay"; 4 + pname = "pyvirtualdisplay"; 5 5 version = "3.0"; 6 6 7 7 propagatedBuildInputs = [ EasyProcess ]; 8 8 9 9 src = fetchPypi { 10 - inherit pname version; 10 + pname = "PyVirtualDisplay"; 11 + inherit version; 11 12 sha256 = "sha256-CXVbw86263JfsH7KVCX0PyNY078I4A0qm3kqGu3RYVk="; 12 13 }; 13 14
+3 -3
pkgs/development/python-modules/nocturne/default.nix
··· 6 6 , lib 7 7 , nlohmann_json 8 8 , pybind11 9 - , PyVirtualDisplay 9 + , pyvirtualdisplay 10 10 , sfml 11 11 , substituteAll 12 12 }: ··· 42 42 43 43 buildInputs = [ sfml ]; 44 44 45 - # hydra-core and PyVirtualDisplay are not declared as dependences but they are requirements 46 - propagatedBuildInputs = [ hydra-core PyVirtualDisplay ]; 45 + # hydra-core and pyvirtualdisplay are not declared as dependences but they are requirements 46 + propagatedBuildInputs = [ hydra-core pyvirtualdisplay ]; 47 47 48 48 # Test suite requires hydra-submitit-launcher which is not packaged as of 2022-01-02 49 49 doCheck = false;
+2 -2
pkgs/development/python-modules/pytest-xvfb/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytest 5 - , PyVirtualDisplay 5 + , pyvirtualdisplay 6 6 , isPy27 7 7 }: 8 8 ··· 19 19 buildInputs = [ pytest ]; 20 20 21 21 propagatedBuildInputs = [ 22 - PyVirtualDisplay 22 + pyvirtualdisplay 23 23 ]; 24 24 25 25 meta = with lib; {
+1
pkgs/top-level/python-aliases.nix
··· 222 222 pytorchWithCuda = torchWithCuda; # added 2022-09-30 223 223 pytorchWithoutCuda = torchWithoutCuda; # added 2022-09-30 224 224 pytwitchapi = twitchapi; # added 2022-03-07 225 + PyVirtualDisplay = pyvirtualdisplay; # added 2023-02-19 225 226 qasm2image = throw "qasm2image is no longer maintained (since November 2018), and is not compatible with the latest pythonPackages.qiskit versions."; # added 2020-12-09 226 227 qiskit-aqua = throw "qiskit-aqua has been removed due to deprecation, with its functionality moved to different qiskit packages"; 227 228 rdflib-jsonld = throw "rdflib-jsonld is not compatible with rdflib 6"; # added 2021-11-05
+1 -1
pkgs/top-level/python-packages.nix
··· 9646 9646 9647 9647 pyvicare = callPackage ../development/python-modules/pyvicare { }; 9648 9648 9649 - PyVirtualDisplay = callPackage ../development/python-modules/PyVirtualDisplay { }; 9649 + pyvirtualdisplay = callPackage ../development/python-modules/pyvirtualdisplay { }; 9650 9650 9651 9651 pyvis = callPackage ../development/python-modules/pyvis { }; 9652 9652