mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
grin: Fix build dependencies
Using old source, grin was unable to build due to missing argparse pypi package.
This commit is contained in:
parent
c0b1e8a5fb
commit
314da48f31
@ -1,16 +1,16 @@
|
|||||||
{ stdenv, fetchurl, python2Packages }:
|
{ stdenv, fetchgit, python2Packages }:
|
||||||
|
|
||||||
python2Packages.buildPythonApplication rec {
|
python2Packages.buildPythonApplication rec {
|
||||||
name = "grin-1.2.1";
|
name = "grin-1.2.1";
|
||||||
namePrefix = "";
|
namePrefix = "";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchgit {
|
||||||
url = "mirror://pypi/g/grin/${name}.tar.gz";
|
url = "git://github.com/rkern/grin";
|
||||||
sha256 = "1swzwb17wibam8jszdv98h557hlx44pg6psv6rjz7i33qlxk0fdz";
|
rev = "8dd4b5309b3bc04fe9d3e71836420f7d8d4a293f";
|
||||||
|
sha256 = "0vz2aahwdcy1296g4w3i79dkvmzk9jc2n2zmlcvlg5m3s6h7b6jd";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with python2Packages; [ nose ];
|
buildInputs = with python2Packages; [ nose ];
|
||||||
propagatedBuildInputs = with python2Packages; [ argparse ];
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = https://pypi.python.org/pypi/grin;
|
homepage = https://pypi.python.org/pypi/grin;
|
||||||
|
Loading…
Reference in New Issue
Block a user