Merge pull request #212300 from dotlambda/poetry-fix

poetry: pin dulwich at 0.20.50
This commit is contained in:
K900 2023-01-24 15:47:57 +03:00 committed by GitHub
commit 100aa1e853
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,18 @@
}:
let
python = python3;
python = python3.override {
packageOverrides = self: super: {
dulwich = super.dulwich.overridePythonAttrs (old: rec {
version = "0.20.50";
src = self.fetchPypi {
inherit (old) pname;
inherit version;
hash = "sha256-UKlBeWssZ1vjm+co1UDBa1t853654bP4VWUOzmgy0r4=";
};
});
};
};
in python.pkgs.buildPythonApplication rec {
pname = "poetry";
version = "1.3.2";