pypi2nix: 1.8.0 -> 1.8.1 (#30792)

* pypi2nix: 1.8.0 -> 1.8.1

* pypi2nix: use fetchFromGitHub
This commit is contained in:
Sebastian Jordan 2017-10-25 16:10:57 +02:00 committed by Jörg Thalheim
parent 8327e434c4
commit c29f701db8

View file

@ -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 {