python3Packages.hatch-build-scripts: init at 1.0.0
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
hatchling,
|
||||
hatch-vcs,
|
||||
}:
|
||||
|
||||
let
|
||||
version = "1.0.0";
|
||||
in
|
||||
buildPythonPackage {
|
||||
pname = "hatch-build-scripts";
|
||||
inherit version;
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rmorshea";
|
||||
repo = "hatch-build-scripts";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-umqtfUGmmZ/j/E8JY+s6REmDeTYwbcE1jZ7w4nczazs=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
dependencies = [ hatch-vcs ];
|
||||
|
||||
pythonImportsCheck = [ "hatch_build_scripts" ];
|
||||
|
||||
meta = {
|
||||
description = "Plugin for Hatch that runs build scripts and saves their artifacts";
|
||||
homepage = "https://github.com/rmorshea/hatch-build-scripts";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ kyehn ];
|
||||
};
|
||||
}
|
||||
@@ -6685,6 +6685,8 @@ self: super: with self; {
|
||||
|
||||
hatch-babel = callPackage ../development/python-modules/hatch-babel { };
|
||||
|
||||
hatch-build-scripts = callPackage ../development/python-modules/hatch-build-scripts { };
|
||||
|
||||
hatch-deps-selector = callPackage ../development/python-modules/hatch-deps-selector { };
|
||||
|
||||
hatch-docstring-description =
|
||||
@@ -16709,6 +16711,8 @@ self: super: with self; {
|
||||
|
||||
sarif-tools = callPackage ../development/python-modules/sarif-tools { };
|
||||
|
||||
sasdata = callPackage ../development/python-modules/sasdata { };
|
||||
|
||||
sasmodels = callPackage ../development/python-modules/sasmodels { };
|
||||
|
||||
sat-tmp = callPackage ../development/python-modules/sat-tmp { };
|
||||
@@ -18407,6 +18411,8 @@ self: super: with self; {
|
||||
|
||||
tbm-utils = callPackage ../development/python-modules/tbm-utils { };
|
||||
|
||||
tccbox = callPackage ../development/python-modules/tccbox { };
|
||||
|
||||
tcolorpy = callPackage ../development/python-modules/tcolorpy { };
|
||||
|
||||
tcxfile = callPackage ../development/python-modules/tcxfile { };
|
||||
|
||||
Reference in New Issue
Block a user