Skip to content

Commit

Permalink
python312Packages.pybind11-stubgen: init at 2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
qbisi committed Nov 12, 2024
1 parent a159611 commit a97f70d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pkgs/development/python-modules/pybind11-stubgen/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
buildPythonPackage,
fetchFromGitHub,
lib,
}:

buildPythonPackage rec {
pname = "pybind11-stubgen";
version = "2.5.1";

src = fetchFromGitHub {
owner = "sizmailov";
repo = "pybind11-stubgen";
rev = "refs/tags/v${version}";
hash = "sha256-PJiiRSQ92vP5LKWCgBuowkuDdTmC22xyuax2wsH0wOM=";
};

pythonImportsCheck = [ "pybind11_stubgen" ];

meta = {
changelog = "https://github.com/sizmailov/pybind11-stubgen/releases/tag/v${version}";
description = "Generates stubs for python modules";
homepage = "https://github.com/sizmailov/pybind11-stubgen";
license = lib.licenses.bsd3Lbnl;
maintainers = with lib.maintainers; [ qbisi ];
};
}

0 comments on commit a97f70d

Please sign in to comment.