Skip to content

Commit

Permalink
pypi2nix: 1.8.0 -> 1.8.1 (#30792)
Browse files Browse the repository at this point in the history
* pypi2nix: 1.8.0 -> 1.8.1

* pypi2nix: use fetchFromGitHub
  • Loading branch information
seppeljordan authored and Mic92 committed Oct 25, 2017
1 parent 8327e43 commit c29f701
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions pkgs/development/tools/pypi2nix/default.nix
@@ -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 {
Expand Down

0 comments on commit c29f701

Please sign in to comment.