Merge pull request #1 from kierdavis/pius-fix

Fix pius update
This commit is contained in:
R. RyanTM 2019-07-16 07:30:30 -07:00 committed by GitHub
commit ef8b90e718
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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