python3Packages.datastar-py: init at 1.0.0

This commit is contained in:
Robert Schütz
2026-05-01 21:42:09 -07:00
parent a985801a30
commit 4718fb4a8e
2 changed files with 42 additions and 0 deletions
@@ -0,0 +1,40 @@
{
buildPythonPackage,
fetchFromGitHub,
hatchling,
lib,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "datastar-py";
version = "1.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "starfederation";
repo = "datastar-python";
tag = "v${finalAttrs.version}";
hash = "sha256-79pdSzHwkF8JX3rF5PIEvx//rKRvX3H1B2382Wfbm9U=";
};
build-system = [ hatchling ];
pythonImportsCheck = [ "datastar_py" ];
nativeCheckInputs = [
pytestCheckHook
];
# tests were only added after 1.0.0
# TODO enable after update
doCheck = false;
meta = {
changelog = "https://github.com/starfederation/datastar-python/releases/tag/${finalAttrs.src.tag}";
description = "Helper functions and classes for the Datastar library";
homepage = "https://github.com/starfederation/datastar-python";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.dotlambda ];
};
})
+2
View File
@@ -3650,6 +3650,8 @@ self: super: with self; {
datasketch = callPackage ../development/python-modules/datasketch { };
datastar-py = callPackage ../development/python-modules/datastar-py { };
datauri = callPackage ../development/python-modules/datauri { };
datefinder = callPackage ../development/python-modules/datefinder { };