Merge pull request #13124 from FRidh/buildPythonApplication
buildPythonApplication: use new function for Python applications
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchurl, buildPythonPackage }:
|
||||
{ stdenv, fetchurl, buildPythonApplication }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonApplication rec {
|
||||
version = "4.49.0";
|
||||
name = "getmail-${version}";
|
||||
namePrefix = "";
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ pkgs, fetchurl, buildPythonPackage, pythonPackages }:
|
||||
{ pkgs, fetchurl, buildPythonApplication, pythonPackages }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonApplication rec {
|
||||
version = "1.8.1-beta";
|
||||
name = "gmvault-${version}";
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchurl, pythonPackages }:
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
name = "httpie-0.9.2";
|
||||
namePrefix = "";
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchFromGitHub, buildPythonPackage, sqlite3 }:
|
||||
{ stdenv, fetchFromGitHub, buildPythonApplication, sqlite3 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonApplication rec {
|
||||
version = "6.6.1";
|
||||
name = "offlineimap-${version}";
|
||||
namePrefix = "";
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
# store path. The problem appears to be non-fatal, but there's probably
|
||||
# some loss of functionality because of it.
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
version = "1.10.2";
|
||||
name = "tahoe-lafs-${version}";
|
||||
namePrefix = "";
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchurl, pythonPackages }:
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
name = "s3cmd-1.5.2";
|
||||
|
||||
src = fetchurl {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchurl, pythonPackages }:
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
name = "speedtest-cli-${version}";
|
||||
version = "0.3.1";
|
||||
namePrefix = "";
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchurl, python3Packages }:
|
||||
|
||||
python3Packages.buildPythonPackage rec {
|
||||
python3Packages.buildPythonApplication rec {
|
||||
name = "urlwatch-2.0";
|
||||
|
||||
src = fetchurl {
|
||||
|
||||
Reference in New Issue
Block a user