python3Packages.pyscaffoldext-custom-extension: init at 0.6.3
This commit is contained in:
parent
1a9fea0ce6
commit
eb504d1b58
@ -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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user