Merge pull request #13124 from FRidh/buildPythonApplication
buildPythonApplication: use new function for Python applications
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{ stdenv, buildPythonPackage, fetchurl, coreutils, twisted }:
|
||||
{ stdenv, buildPythonApplication, fetchurl, coreutils, twisted }:
|
||||
|
||||
buildPythonPackage (rec {
|
||||
buildPythonApplication (rec {
|
||||
name = "buildbot-slave-0.8.10";
|
||||
namePrefix = "";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildPythonPackage, fetchurl, twisted, dateutil, jinja2
|
||||
{ stdenv, buildPythonApplication, fetchurl, twisted, dateutil, jinja2
|
||||
, sqlalchemy , sqlalchemy_migrate_0_7
|
||||
, enableDebugClient ? false, pygobject ? null, pyGtkGlade ? null
|
||||
}:
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
assert enableDebugClient -> pygobject != null && pyGtkGlade != null;
|
||||
|
||||
buildPythonPackage (rec {
|
||||
buildPythonApplication (rec {
|
||||
name = "buildbot-0.8.12";
|
||||
namePrefix = "";
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchurl, pythonPackages, python} :
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
name = "devpi-client-${version}";
|
||||
version = "2.3.2";
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchgit, buildPythonPackage, pythonPackages }:
|
||||
{ stdenv, fetchgit, buildPythonApplication, pythonPackages }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonApplication rec {
|
||||
|
||||
name = "grabserial-20141120";
|
||||
namePrefix = "";
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{ lib, pythonPackages, fetchFromGitHub }:
|
||||
|
||||
let version = "0.1.2"; in
|
||||
pythonPackages.buildPythonPackage {
|
||||
pythonPackages.buildPythonApplication {
|
||||
name = "nixbang-${version}";
|
||||
namePrefix = "";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchgit, cmake, python, llvmPackages, boost, pythonPackages, buildPythonPackage, makeWrapper
|
||||
{ stdenv, fetchgit, cmake, python, llvmPackages, boost, pythonPackages, buildPythonApplication, makeWrapper
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchFromGitHub, pythonPackages }:
|
||||
|
||||
pythonPackages.buildPythonPackage {
|
||||
pythonPackages.buildPythonApplication {
|
||||
name = "gprof2dot-2015-04-27";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchurl, buildPythonPackage, wxPython, makeDesktopItem }:
|
||||
{ stdenv, fetchurl, buildPythonApplication, wxPython, makeDesktopItem }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonApplication rec {
|
||||
name = "winpdb-1.4.8";
|
||||
namePrefix = "";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user