lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.yamlfix: fix build

Pin maison to v1.4.3. since v2.0.0 contains a breaking change.
Closes #381020

+12 -1
+12 -1
pkgs/development/python-modules/yamlfix/default.nix
··· 12 12 ruyaml, 13 13 setuptools, 14 14 }: 15 + let 16 + maison143 = maison.overridePythonAttrs (old: rec { 17 + version = "1.4.3"; 18 + src = fetchFromGitHub { 19 + owner = "dbatten5"; 20 + repo = "maison"; 21 + tag = "v${version}"; 22 + hash = "sha256-2hUmk91wr5o2cV3un2nMoXDG+3GT7SaIOKY+QaZY3nw="; 23 + }; 24 + }); 25 + in 15 26 16 27 buildPythonPackage rec { 17 28 pname = "yamlfix"; ··· 34 45 35 46 dependencies = [ 36 47 click 37 - maison 48 + maison143 38 49 ruyaml 39 50 ]; 40 51