python3Packages.std2: init at unstable-2023-07-05

This commit is contained in:
Gaetan Lepage 2023-07-06 08:10:00 +02:00
parent 184b3b322e
commit cdd03a70d8
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
}:
buildPythonPackage {
pname = "std2";
version = "unstable-2023-07-05";
format = "pyproject";
src = fetchFromGitHub {
owner = "ms-jpq";
repo = "std2";
rev = "1080b7b657f75352481808a906939d16b6d956a1";
hash = "sha256-shAuCZvyFGrW26uTnNeyvlAIABb1d9oeKpk9hQbtuEQ=";
};
nativeBuildInputs = [ setuptools ];
meta = with lib; {
homepage = "https://github.com/ms-jpq/std2";
description = "Dependency to chadtree and coq_nvim plugins";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ GaetanLepage ];
};
}

View File

@ -11937,6 +11937,8 @@ self: super: with self; {
statsmodels = callPackage ../development/python-modules/statsmodels { };
std2 = callPackage ../development/python-modules/std2 { };
stdiomask = callPackage ../development/python-modules/stdiomask { };
stdlib-list = callPackage ../development/python-modules/stdlib-list { };