lol

python3Packages.bencodetools: init at 1.0.1

+39 -1
+5 -1
pkgs/by-name/be/bencodetools/package.nix
··· 3 3 lib, 4 4 fetchFromGitLab, 5 5 gitUpdater, 6 + python3Packages, 6 7 }: 7 8 8 9 stdenv.mkDerivation (finalAttrs: { ··· 35 36 runHook postInstallCheck 36 37 ''; 37 38 38 - passthru.updateScript = gitUpdater { rev-prefix = "v"; }; 39 + passthru = { 40 + tests.python-module = python3Packages.bencodetools; 41 + updateScript = gitUpdater { rev-prefix = "v"; }; 42 + }; 39 43 40 44 meta = { 41 45 description = "Collection of tools for manipulating bencoded data";
+30
pkgs/development/python-modules/bencodetools/default.nix
··· 1 + { 2 + buildPythonPackage, 3 + bencodetools, 4 + pytestCheckHook, 5 + setuptools, 6 + }: 7 + buildPythonPackage { 8 + inherit (bencodetools) pname version src; 9 + format = "pyproject"; 10 + 11 + nativeBuildInputs = [ setuptools ]; 12 + 13 + nativeCheckInputs = [ pytestCheckHook ]; 14 + 15 + dontConfigure = true; 16 + 17 + pythonImportsCheck = [ 18 + "bencode" 19 + "typevalidator" 20 + ]; 21 + 22 + meta = { 23 + inherit (bencodetools.meta) 24 + description 25 + homepage 26 + license 27 + maintainers 28 + ; 29 + }; 30 + }
+4
pkgs/top-level/python-packages.nix
··· 1575 1575 1576 1576 bencoder = callPackage ../development/python-modules/bencoder { }; 1577 1577 1578 + bencodetools = callPackage ../development/python-modules/bencodetools { 1579 + bencodetools = pkgs.bencodetools; 1580 + }; 1581 + 1578 1582 beniget = callPackage ../development/python-modules/beniget { }; 1579 1583 1580 1584 bentoml = callPackage ../development/python-modules/bentoml { };