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