We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd67dd7 commit d0415abCopy full SHA for d0415ab
nix/testenv.nix
@@ -74,6 +74,22 @@ poetry2nix.mkPoetryEnv {
74
sha256 = "sha256-UYm1LGEhwk/q4ogWarQbMlScfiNIZSc2VAuebn1OcuM=";
75
};
76
});
77
+
78
+ flake8 = super.execnet.overridePythonAttrs (old: {
79
+ src = fetchPypi {
80
+ pname = "flake8";
81
+ version = "7.1.1";
82
+ sha256 = "sha256-BJ0FhJHiKOA+Z7OQ8xG7+I/OLbqo+mc+euqHtxmLjTg=";
83
+ };
84
+ });
85
86
+ flake8_black = super.execnet.overridePythonAttrs (old: {
87
88
+ pname = "flake8_black";
89
+ version = "0.3.6";
90
+ sha256 = "sha256-UYm1LGEhwk/q4ogWarQbMlScfiNIZSc2VAuebn1Ocu2=";
91
92
93
94
in
95
(lib.mapAttrs (
0 commit comments