mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
Merge pull request #273354 from jvanbruegge/tandoor-import
tandoor-recipes: Fix URL import
This commit is contained in:
commit
197e9c29e6
@ -5,7 +5,20 @@
|
||||
, fetchpatch
|
||||
}:
|
||||
let
|
||||
python = python3;
|
||||
python = python3.override {
|
||||
packageOverrides = self: super: {
|
||||
validators = super.validators.overridePythonAttrs (_: rec {
|
||||
version = "0.20.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "python-validators";
|
||||
repo = "validators";
|
||||
rev = version;
|
||||
hash = "sha256-ZnLyTHlsrXthGnaPzlV2ga/UTm5SSEHLTwC/tobiPak=";
|
||||
};
|
||||
propagatedBuildInputs = [ super.decorator super.six ];
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
common = callPackage ./common.nix { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user