poetry2nix: drop anyio override

The version number of the package was fixed a while ago.
This commit is contained in:
Martin Weinelt 2021-07-27 11:19:28 +02:00
parent d40a72a892
commit 8ec2e85105
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -52,12 +52,6 @@ self: super:
}
);
anyio = super.anyio.overridePythonAttrs (old: {
postPatch = ''
substituteInPlace setup.py --replace 'setup()' 'setup(version="${old.version}")'
'';
});
astroid = super.astroid.overridePythonAttrs (
old: rec {
buildInputs = (old.buildInputs or [ ]) ++ [ self.pytest-runner ];