pythonPackages.libais: 0.16 -> 0.17 (#37876)
This commit is contained in:
parent
35121b1973
commit
21943e06bf
@ -1,20 +1,19 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchurl,
|
{ stdenv, buildPythonPackage, fetchPypi,
|
||||||
six, pytest, pytestrunner, pytestcov, coverage
|
six, pytest, pytestrunner, pytestcov, coverage
|
||||||
}:
|
}:
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "libais";
|
pname = "libais";
|
||||||
name = "${pname}-${version}";
|
version = "0.17";
|
||||||
version = "0.16";
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchPypi {
|
||||||
url = "mirror://pypi/l/libais/${name}.tar.bz2";
|
inherit pname version;
|
||||||
sha256 = "14dsh5k32ryszwdn6p45wrqp4ska6cc9qpm6lk5c5d1p4rc7wnhq";
|
sha256 = "0pyka09h8nb0vlzh14npq4nxmzg1046lr3klgn97dsf5k0iflapb";
|
||||||
};
|
};
|
||||||
|
|
||||||
# data files missing
|
# data files missing
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
buildInputs = [ pytest pytestrunner pytestcov coverage ];
|
checkInputs = [ pytest pytestrunner pytestcov coverage ];
|
||||||
propagatedBuildInputs = [ six ];
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user