pypi2nix: 1.8.0 -> 1.8.1 (#30792)
* pypi2nix: 1.8.0 -> 1.8.1 * pypi2nix: use fetchFromGitHub
This commit is contained in:
parent
8327e434c4
commit
c29f701db8
@ -1,14 +1,16 @@
|
||||
{ stdenv, fetchurl, pythonPackages, zip, makeWrapper, nix, nix-prefetch-git
|
||||
{ stdenv, fetchFromGitHub, fetchurl, pythonPackages, zip, makeWrapper, nix, nix-prefetch-git
|
||||
, nix-prefetch-hg
|
||||
}:
|
||||
|
||||
let
|
||||
|
||||
version = "1.8.0";
|
||||
version = "1.8.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/garbas/pypi2nix/archive/v${version}.tar.gz";
|
||||
sha256 = "133sjx8r1jdb5gi3caawa9m7v496jv4id2c3zqnx8hria22425za";
|
||||
src = fetchFromGitHub {
|
||||
owner = "garbas";
|
||||
repo = "pypi2nix";
|
||||
rev = "v${version}";
|
||||
sha256 = "039a2ys7ijzi2sa2haa6a8lbhncvd1wfsi6gcy9vm02gi31ghzyb";
|
||||
};
|
||||
|
||||
click = fetchurl {
|
||||
|
Loading…
Reference in New Issue
Block a user