Skip to content

Commit e9845ab

Browse files
author
Matej Cotman
authored
Merge pull request #32 from eficode/feat/no-hashes
feat(nix): do not rely on commit refs and hashes
2 parents eec7c24 + 1b2329c commit e9845ab

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

default.nix

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@ let
3939
ref = "refs/tags/3.3.0";
4040
}) {
4141
inherit pkgs python;
42-
pypiDataRev = "5c6e5ecbc5a60fb9c43dc77be8e0eb8ac89f4fee";
43-
pypiDataSha256 = "0gnq6r92bmnhqjykx3jff7lvg7wbpayd0wvb0drra8r8dvmr5b2d";
42+
pypiData = builtins.fetchTarball {
43+
name = "pypi-deps-db-src";
44+
url = "https://github.com/DavHau/pypi-deps-db/tarball/master";
45+
};
4446
};
4547

4648
/* Returns new line delimited dependencies in format of `requirements.txt`

0 commit comments

Comments
 (0)