mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
honcho: Fix hash
This commit is contained in:
parent
2bf421d197
commit
81eb0c20f8
1 changed files with 6 additions and 4 deletions
|
@ -1,13 +1,15 @@
|
|||
{ stdenv, fetchzip, pythonPackages, buildPythonApplication }:
|
||||
{ stdenv, fetchFromGitHub, pythonPackages, buildPythonApplication }:
|
||||
|
||||
let honcho = buildPythonApplication rec {
|
||||
name = "honcho-${version}";
|
||||
version = "0.6.6";
|
||||
namePrefix = "";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/nickstenning/honcho/archive/v${version}.tar.gz";
|
||||
sha256 = "1ishyzvq19hdln2nn3bjlk0kwfqsbddpypp28n88jp3px6832w02";
|
||||
src = fetchFromGitHub {
|
||||
owner = "nickstenning";
|
||||
repo = "honcho";
|
||||
rev = "v${version}";
|
||||
sha256 = "0lawwcyrrsd9z9jcr94qn1yabl9bzc529jkpc51jq720fhdlfcr0";
|
||||
};
|
||||
|
||||
buildInputs = with pythonPackages; [ nose mock jinja2 ];
|
||||
|
|
Loading…
Reference in a new issue