peru: 0.2.3 -> 1.0.1, fix build
This commit is contained in:
parent
9e5f33a4e0
commit
01fafc088a
@ -1,24 +1,21 @@
|
|||||||
{ stdenv, fetchFromGitHub, python3Packages }:
|
{ stdenv, fetchurl, python3Packages }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "0.2.3";
|
pythonPackages = python3Packages;
|
||||||
in
|
in pythonPackages.buildPythonApplication rec {
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
|
||||||
|
|
||||||
# Do not prefix name with python specific version identifier.
|
|
||||||
namePrefix = "";
|
|
||||||
|
|
||||||
name = "peru-${version}";
|
name = "peru-${version}";
|
||||||
|
version = "1.0.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchurl {
|
||||||
owner = "buildinspace";
|
url = "mirror://pypi/p/peru/${name}.tar.gz";
|
||||||
repo = "peru";
|
sha256 = "d51771d4aa7e16119e46c39efd71b0a1a898607bf3fb7735fc688a64fc59cbf1";
|
||||||
rev = "${version}";
|
|
||||||
sha256 = "04bnaly50qmzkj0shdag94n8vr3ggarlqdny5zdb8nh31fqgln8b";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
pythonPath = with python3Packages; [ pyyaml docopt ];
|
propagatedBuildInputs = with pythonPackages; [ pyyaml docopt ];
|
||||||
|
|
||||||
|
# No tests in archive
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = https://github.com/buildinspace/peru;
|
homepage = https://github.com/buildinspace/peru;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user