xxh: remove from pythonPackages set

error: xxh should use `buildPythonPackage` or `toPythonModule` if it is to be part of the Python pa
ckages set."}
This commit is contained in:
Artturin 2022-11-16 22:04:12 +02:00
parent 81db0fc59c
commit 4af6e0bc5f
3 changed files with 6 additions and 11 deletions

View file

@ -1,19 +1,16 @@
{ lib
, fetchFromGitHub
, buildPythonApplication
, pexpect
, pyyaml
, python3
, openssh
, nixosTests
, pythonOlder
}:
buildPythonApplication rec{
python3.pkgs.buildPythonApplication rec{
pname = "xxh";
version = "0.8.12";
format = "setuptools";
disabled = pythonOlder "3.6";
disabled = python3.pkgs.pythonOlder "3.6";
src = fetchFromGitHub {
owner = pname;
@ -23,8 +20,8 @@ buildPythonApplication rec{
};
propagatedBuildInputs = [
pexpect
pyyaml
python3.pkgs.pexpect
python3.pkgs.pyyaml
openssh
];

View file

@ -33132,7 +33132,7 @@ with pkgs;
gtk = gtk2;
};
xxh = with python3Packages; toPythonApplication xxh;
xxh = callPackage ../tools/networking/xxh { };
kodiPackages = recurseIntoAttrs (kodi.packages);

View file

@ -12133,8 +12133,6 @@ self: super: with self; {
inherit (pkgs.xorg) xorgserver;
};
xxh = callPackage ../tools/networking/xxh { };
xxhash = callPackage ../development/python-modules/xxhash { };
yabadaba = callPackage ../development/python-modules/yabadaba { };