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: 1092f6d08653
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 82233e0bb7ed
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 12, 2018

  1. pythonPackages.libais: 0.16 -> 0.17 (#37876)

    Signed-off-by: Lancelot SIX <lsix@lancelotsix.com>
    lsix committed Apr 12, 2018
    Copy the full SHA
    82233e0 View commit details
Showing with 6 additions and 7 deletions.
  1. +6 −7 pkgs/development/python-modules/libais/default.nix
13 changes: 6 additions & 7 deletions pkgs/development/python-modules/libais/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
{ stdenv, buildPythonPackage, fetchurl,
{ stdenv, buildPythonPackage, fetchPypi,
six, pytest, pytestrunner, pytestcov, coverage
}:
buildPythonPackage rec {
pname = "libais";
name = "${pname}-${version}";
version = "0.16";
version = "0.17";

src = fetchurl {
url = "mirror://pypi/l/libais/${name}.tar.bz2";
sha256 = "14dsh5k32ryszwdn6p45wrqp4ska6cc9qpm6lk5c5d1p4rc7wnhq";
src = fetchPypi {
inherit pname version;
sha256 = "0pyka09h8nb0vlzh14npq4nxmzg1046lr3klgn97dsf5k0iflapb";
};

# data files missing
doCheck = false;

buildInputs = [ pytest pytestrunner pytestcov coverage ];
checkInputs = [ pytest pytestrunner pytestcov coverage ];
propagatedBuildInputs = [ six ];

meta = with stdenv.lib; {