Merge pull request #64870 from r-ryantm/auto-update/pius

pius: 2.2.7 -> 3.0.0
This commit is contained in:
Ryan Mulligan 2019-07-16 18:21:19 -07:00 committed by GitHub
commit ef26020fff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +1,16 @@
{ fetchFromGitHub, stdenv, pythonPackages, gnupg, perl }:
{ fetchFromGitHub, stdenv, python3Packages, gnupg, perl }:
let version = "2.2.7"; in
pythonPackages.buildPythonApplication {
name = "pius-${version}";
let version = "3.0.0"; in
python3Packages.buildPythonApplication {
pname = "pius";
namePrefix = "";
inherit version;
src = fetchFromGitHub {
owner = "jaymzh";
repo = "pius";
rev = "v${version}";
sha256 = "1kjj44lf9di4ylvmc949dxncllzd8afp0yknr3152dmxkw1vl127";
sha256 = "0l87dx7n6iwy8alxnhvval8h1kl4da6a59hsilbi65c6bpj4dh3y";
};
patchPhase = ''
@ -18,8 +19,7 @@ pythonPackages.buildPythonApplication {
done
'';
nativeBuildInputs = [ perl ];
propagatedBuildInputs = with pythonPackages; [ six ];
buildInputs = [ perl ];
meta = {
homepage = https://www.phildev.net/pius/;