Skip to content
Snippets Groups Projects
Commit 996f0acd authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Use the eventual Python package set instead of the previous overlay's

not sure this fixes anything but it might fix the PrivateStorageio build which
finds autobahn 19.1.1 instead of autobahn 19.8.1.

I think it is abstractly "more correct" too, maybe, if you can convince
yourself there is such a thing.
parent 5200203b
Branches
No related tags found
1 merge request!57Remove unnecessary overrides
......@@ -13,21 +13,21 @@ self: super: {
# ecosystem - the early stages of a slow, painful death by the thousand
# cuts of incompatibilities between libraries with no maintained Python
# 2 support.
typing = python-super.callPackage ./typing.nix { };
typing = python-self.callPackage ./typing.nix { };
# new tahoe-lafs dependency
eliot = python-super.callPackage ./eliot.nix { };
eliot = python-self.callPackage ./eliot.nix { };
# tahoe-lafs in nixpkgs is packaged as an application! so we have to
# re-package it ourselves as a library.
tahoe-lafs = python-super.callPackage ./tahoe-lafs.nix { };
tahoe-lafs = python-self.callPackage ./tahoe-lafs.nix { };
# we depend on the privacypass python library, a set of bindings to the
# challenge-bypass-ristretto Rust library
privacypass = python-super.callPackage ./privacypass.nix { };
privacypass = python-self.callPackage ./privacypass.nix { };
# And add ourselves to the collection too.
zkapauthorizer = python-super.callPackage ./zkapauthorizer.nix { };
zkapauthorizer = python-self.callPackage ./zkapauthorizer.nix { };
};
};
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment