cynthion: init at 0.1.7

This commit is contained in:
Karolis Stasaitis 2024-11-13 09:17:27 +01:00
parent 93b0565dd2
commit 57fb63c931

View File

@ -0,0 +1,26 @@
{
python3,
fetchFromGitHub,
}:
let
python = python3.override {
self = python3;
packageOverrides = _: super: {
amaranth = super.amaranth.overridePythonAttrs rec {
version = "0.4.1";
src = fetchFromGitHub {
owner = "amaranth-lang";
repo = "amaranth";
rev = "refs/tags/v${version}";
sha256 = "sha256-VMgycvxkphdpWIib7aZwh588En145RgYlG2Zfi6nnDo=";
};
postPatch = null;
};
};
};
in
python.pkgs.toPythonApplication python.pkgs.cynthion