lol

python310Packages.pyjson5: remove duplicate package

+3 -30
+2 -2
pkgs/development/python-modules/jupyterlab_server/default.nix
··· 7 7 , pythonOlder 8 8 , requests 9 9 , pytestCheckHook 10 - , pyjson5 10 + , json5 11 11 , babel 12 12 , jupyter_server 13 13 , openapi-core ··· 40 40 hatchling 41 41 ]; 42 42 43 - propagatedBuildInputs = [ requests jsonschema pyjson5 babel jupyter_server ]; 43 + propagatedBuildInputs = [ requests jsonschema json5 babel jupyter_server ]; 44 44 45 45 checkInputs = [ 46 46 openapi-core
-26
pkgs/development/python-modules/pyjson5/default.nix
··· 1 - { buildPythonPackage, lib, nose, fetchFromGitHub }: 2 - 3 - buildPythonPackage rec { 4 - pname = "pyjson5"; 5 - version = "0.8.5"; 6 - 7 - src = fetchFromGitHub { 8 - owner = "dpranke"; 9 - repo = pname; 10 - rev = "v${version}"; 11 - sha256 = "0nyngj18jlkgvm1177lc3cj47wm4yh3dqigygvcvw7xkyryafsqn"; 12 - }; 13 - 14 - doCheck = true; 15 - checkInputs = [ nose ]; 16 - checkPhase = '' 17 - nosetests 18 - ''; 19 - 20 - meta = with lib; { 21 - description = "Python implementation of the JSON5 data format"; 22 - license = licenses.asl20; 23 - homepage = "https://github.com/dpranke/pyjson5"; 24 - maintainers = with maintainers; [ isgy ]; 25 - }; 26 - }
+1
pkgs/top-level/python-aliases.nix
··· 126 126 pycryptodome-test-vectors = throw "pycryptodome-test-vectors has been removed because it is an internal package to pycryptodome"; # added 2022-05-28 127 127 pyialarmxr = pyialarmxr-homeassistant; # added 2022-06-07 128 128 pyialarmxr-homeassistant = throw "The package was removed together with the component support in home-assistant 2022.7.0"; # added 2022-07-07 129 + pyjson5 = json5; # added 2022-08-28 129 130 pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20 130 131 PyLD = pyld; # added 2022-06-22 131 132 pymc3 = pymc; # added 2022-06-05, module was rename starting with 4.0.0
-2
pkgs/top-level/python-packages.nix
··· 7788 7788 7789 7789 pyjks = callPackage ../development/python-modules/pyjks { }; 7790 7790 7791 - pyjson5 = callPackage ../development/python-modules/pyjson5 { }; 7792 - 7793 7791 pyjsparser = callPackage ../development/python-modules/pyjsparser { }; 7794 7792 7795 7793 pyjwkest = callPackage ../development/python-modules/pyjwkest { };