python3Packages.pyscaffoldext-custom-extension: init at 0.6.3

This commit is contained in:
matthewcroughan 2024-02-09 22:06:31 +00:00 committed by Emery Hemingway
parent 1a9fea0ce6
commit eb504d1b58
2 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,63 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, setuptools-scm
, wheel
, configupdater
, importlib-metadata
, packaging
, pyscaffold
, pre-commit
, pytest
, pytest-cov
, pytest-xdist
, tox
, virtualenv
}:
buildPythonPackage rec {
pname = "pyscaffoldext-custom-extension";
version = "0.6.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-xHtKNqLSCTlbbXubADfLYjD3/53WfM65rRuh9RsyeN4=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [
configupdater
importlib-metadata
packaging
pyscaffold
];
passthru.optional-dependencies = {
testing = [
configupdater
pre-commit
pytest
pytest-cov
pytest-xdist
setuptools-scm
tox
virtualenv
];
};
pythonImportsCheck = [ "pyscaffoldext.custom_extension" ];
meta = with lib; {
description = "PyScaffold extension to create a custom PyScaffold extension";
homepage = "https://pypi.org/project/pyscaffoldext-custom-extension/";
license = licenses.mit;
maintainers = with maintainers; [ matthewcroughan ];
};
}

View File

@ -11312,6 +11312,8 @@ self: super: with self; {
pyscaffoldext-cookiecutter = callPackage ../development/python-modules/pyscaffoldext-cookiecutter { };
pyscaffoldext-custom-extension = callPackage ../development/python-modules/pyscaffoldext-custom-extension { };
pyscf = callPackage ../development/python-modules/pyscf { };
pyschedule = callPackage ../development/python-modules/pyschedule { };