summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-28 17:35:04 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-28 17:46:27 +0000
commitd2f5c5abda90c7aee15ed345d6aab5bcf43ca57c (patch)
tree81075a04981b0617154f71735b89b149283799f5 /gnu/packages
parentd498d4eb3392a7fb67cdf81905fca2a51a5947c8 (diff)
gnu: Add python-weasel.
* gnu/packages/python-web.scm (python-weasel): New variable. Change-Id: I0e8264222454577f73edb4bb27f7f28c0db47774
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-web.scm41
1 files changed, 41 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index d877e964d66..34bdf084327 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4311,6 +4311,47 @@ desired
with very acceptable performance.")
(license license:zpl2.1)))
+(define-public python-weasel
+ (package
+ (name "python-weasel")
+ (version "0.4.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "weasel" version))
+ (sha256
+ (base32 "1aas113r29y6yxrmdlsw80rj8w4kgw1jhfjw9rsgc4rf0w7j3g5a"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:test-flags
+ ;; Network access is required.
+ #~(list #$@(map (lambda (test) (string-append "--deselect="
+ "weasel/tests/cli/"
+ test))
+ (list "test_cli.py::test_project_git_dir_asset"
+ "test_cli.py::test_project_git_file_asset"
+ "test_cli_app.py::test_project_assets")))))
+ (native-inputs
+ (list python-pytest
+ python-setuptools))
+ (propagated-inputs
+ (list python-cloudpathlib
+ python-confection
+ python-packaging
+ python-pydantic-2
+ python-requests
+ python-smart-open
+ python-srsly
+ python-typer
+ python-wasabi))
+ (home-page "https://github.com/explosion/weasel/")
+ (synopsis "Small and easy workflow system")
+ (description
+ "This package provides a minimalistic workflow system to manage and
+share end-to-end workflows for different use cases and domains.")
+ (license license:expat)))
+
(define-public python-webencodings
(package
(name "python-webencodings")