mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
opshin: 0.24.1 -> 0.24.2
This commit is contained in:
parent
c0ff075e47
commit
cc81296dba
1 changed files with 15 additions and 9 deletions
|
@ -4,9 +4,20 @@
|
||||||
python3,
|
python3,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
let
|
||||||
|
python3' = python3.override {
|
||||||
|
self = python3;
|
||||||
|
packageOverrides = (
|
||||||
|
final: prev: {
|
||||||
|
cbor2 = prev.cbor2WithoutCExtensions;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
|
in
|
||||||
|
|
||||||
|
python3'.pkgs.buildPythonApplication rec {
|
||||||
pname = "opshin";
|
pname = "opshin";
|
||||||
version = "0.24.1";
|
version = "0.24.2";
|
||||||
|
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
|
@ -14,10 +25,10 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
owner = "OpShin";
|
owner = "OpShin";
|
||||||
repo = "opshin";
|
repo = "opshin";
|
||||||
tag = version;
|
tag = version;
|
||||||
hash = "sha256-+uuTEszA5p/qhvthM3Uje6yX3urbIUAKKfDZ4JXEYYQ=";
|
hash = "sha256-L0vWEXlghXssT9oUw5AYG3/4ALoB/NH90JV8Kdl2n30=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3'.pkgs; [
|
||||||
setuptools
|
setuptools
|
||||||
poetry-core
|
poetry-core
|
||||||
uplc
|
uplc
|
||||||
|
@ -28,11 +39,6 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
ordered-set
|
ordered-set
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
|
||||||
"pluthon"
|
|
||||||
"uplc"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Simple pythonic programming language for Smart Contracts on Cardano";
|
description = "Simple pythonic programming language for Smart Contracts on Cardano";
|
||||||
homepage = "https://opshin.dev";
|
homepage = "https://opshin.dev";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue