Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 274f091b9531
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fd08f993f348
Choose a head ref
  • 6 commits
  • 6 files changed
  • 1 contributor

Commits on Aug 3, 2018

  1. python.pkgs.acme: add meta

    Robert Schütz committed Aug 3, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    28808fe View commit details
  2. python.pkgs.amqplib: add license

    Robert Schütz committed Aug 3, 2018
    Copy the full SHA
    433ffc3 View commit details
  3. python.pkgs.ansi: add meta

    Robert Schütz committed Aug 3, 2018
    Copy the full SHA
    8820843 View commit details
  4. python.pkgs.anyjson: update meta

    Robert Schütz committed Aug 3, 2018
    Copy the full SHA
    1ea27eb View commit details
  5. python.pkgs.application: add meta

    Robert Schütz committed Aug 3, 2018
    Copy the full SHA
    c2cf345 View commit details
  6. python.pkgs.area53: add meta

    Robert Schütz committed Aug 3, 2018
    Copy the full SHA
    fd08f99 View commit details
4 changes: 4 additions & 0 deletions pkgs/development/python-modules/acme/default.nix
Original file line number Diff line number Diff line change
@@ -27,4 +27,8 @@ buildPythonPackage rec {
checkInputs = [ nose ];

postUnpack = "sourceRoot=\${sourceRoot}/acme";

meta = certbot.meta // {
description = "ACME protocol implementation in Python";
};
}
1 change: 1 addition & 0 deletions pkgs/development/python-modules/amqplib/default.nix
Original file line number Diff line number Diff line change
@@ -15,5 +15,6 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
homepage = http://code.google.com/p/py-amqplib/;
description = "Python client for the Advanced Message Queuing Procotol (AMQP)";
license = licenses.lgpl21;
};
}
8 changes: 7 additions & 1 deletion pkgs/development/python-modules/ansi/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ buildPythonPackage, fetchPypi }:
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
pname = "ansi";
@@ -12,4 +12,10 @@ buildPythonPackage rec {
checkPhase = ''
python -c "import ansi.color"
'';

meta = with lib; {
description = "ANSI cursor movement and graphics";
homepage = https://github.com/tehmaze/ansi/;
license = licenses.mit;
};
}
7 changes: 4 additions & 3 deletions pkgs/development/python-modules/anyjson/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ buildPythonPackage, fetchPypi, isPy3k, nose }:
{ lib, buildPythonPackage, fetchPypi, isPy3k, nose }:

buildPythonPackage rec {
pname = "anyjson";
@@ -14,8 +14,9 @@ buildPythonPackage rec {

buildInputs = [ nose ];

meta = {
homepage = https://pypi.python.org/pypi/anyjson/;
meta = with lib; {
homepage = https://bitbucket.org/runeh/anyjson/;
description = "Wrapper that selects the best available JSON implementation";
license = licenses.bsd2;
};
}
8 changes: 7 additions & 1 deletion pkgs/development/python-modules/application/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ buildPythonPackage, fetchdarcs, zope_interface, isPy3k }:
{ lib, buildPythonPackage, fetchdarcs, zope_interface, isPy3k }:

buildPythonPackage rec {
pname = "python-application";
@@ -12,4 +12,10 @@ buildPythonPackage rec {
};

buildInputs = [ zope_interface ];

meta = with lib; {
description = "Basic building blocks for python applications";
homepage = https://github.com/AGProjects/python-application;
license = licenses.lgpl2Plus;
};
}
8 changes: 7 additions & 1 deletion pkgs/development/python-modules/area53/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ buildPythonPackage, fetchPypi
{ lib, buildPythonPackage, fetchPypi
, boto }:

buildPythonPackage rec {
@@ -14,4 +14,10 @@ buildPythonPackage rec {
doCheck = false;

propagatedBuildInputs = [ boto ];

meta = with lib; {
description = "Python Interface to Route53";
homepage = https://github.com/mariusv/Area53;
license = licenses.unfree; # unspecified
};
}