Skip to content

Commit

Permalink
pythonPackages.libais: 0.16 -> 0.17 (#37876)
Browse files Browse the repository at this point in the history
Signed-off-by: Lancelot SIX <lsix@lancelotsix.com>
  • Loading branch information
lsix committed Apr 12, 2018
1 parent 1092f6d commit 82233e0
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions pkgs/development/python-modules/libais/default.nix
@@ -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; {
Expand Down

0 comments on commit 82233e0

Please sign in to comment.