opshin: 0.24.1 -> 0.24.2

This commit is contained in:
t4ccer 2025-04-27 22:31:16 -06:00
parent c0ff075e47
commit cc81296dba
No known key found for this signature in database
GPG key ID: 19E5A2D8B1E43F19

View file

@ -4,9 +4,20 @@
python3,
}:
python3.pkgs.buildPythonApplication rec {
let
python3' = python3.override {
self = python3;
packageOverrides = (
final: prev: {
cbor2 = prev.cbor2WithoutCExtensions;
}
);
};
in
python3'.pkgs.buildPythonApplication rec {
pname = "opshin";
version = "0.24.1";
version = "0.24.2";
format = "pyproject";
@ -14,10 +25,10 @@ python3.pkgs.buildPythonApplication rec {
owner = "OpShin";
repo = "opshin";
tag = version;
hash = "sha256-+uuTEszA5p/qhvthM3Uje6yX3urbIUAKKfDZ4JXEYYQ=";
hash = "sha256-L0vWEXlghXssT9oUw5AYG3/4ALoB/NH90JV8Kdl2n30=";
};
propagatedBuildInputs = with python3.pkgs; [
propagatedBuildInputs = with python3'.pkgs; [
setuptools
poetry-core
uplc
@ -28,11 +39,6 @@ python3.pkgs.buildPythonApplication rec {
ordered-set
];
pythonRelaxDeps = [
"pluthon"
"uplc"
];
meta = with lib; {
description = "Simple pythonic programming language for Smart Contracts on Cardano";
homepage = "https://opshin.dev";