honcho: Fix hash
This commit is contained in:
parent
2bf421d197
commit
81eb0c20f8
@ -1,13 +1,15 @@
|
|||||||
{ stdenv, fetchzip, pythonPackages, buildPythonApplication }:
|
{ stdenv, fetchFromGitHub, pythonPackages, buildPythonApplication }:
|
||||||
|
|
||||||
let honcho = buildPythonApplication rec {
|
let honcho = buildPythonApplication rec {
|
||||||
name = "honcho-${version}";
|
name = "honcho-${version}";
|
||||||
version = "0.6.6";
|
version = "0.6.6";
|
||||||
namePrefix = "";
|
namePrefix = "";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/nickstenning/honcho/archive/v${version}.tar.gz";
|
owner = "nickstenning";
|
||||||
sha256 = "1ishyzvq19hdln2nn3bjlk0kwfqsbddpypp28n88jp3px6832w02";
|
repo = "honcho";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0lawwcyrrsd9z9jcr94qn1yabl9bzc529jkpc51jq720fhdlfcr0";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with pythonPackages; [ nose mock jinja2 ];
|
buildInputs = with pythonPackages; [ nose mock jinja2 ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user