pythonPackages.pylibconfig: init at 0.2.4
Tests are disabled because they are not distributed within the distribution : ``` $ curl -s https://pypi.python.org/packages/source/p/pylibconfig2/pylibconfig2-0.2.4.tar.gz | tar tz | grep test $ curl -s https://codeload.github.com/heinzK1X/pylibconfig2/tar.gz/master | tar tz | grep test pylibconfig2-master/pylibconfig2/test/ pylibconfig2-master/pylibconfig2/test/__init__.py pylibconfig2-master/pylibconfig2/test/test.py ``` Distribution from pypi is prefered because the git repository do not have tags to clearly identify the various releases.
This commit is contained in:
parent
5d952d68de
commit
19f7cc8df2
pkgs/top-level
|
@ -10369,6 +10369,26 @@ let
|
||||||
propagatedBuildInputs = with self; [ unittest2 ];
|
propagatedBuildInputs = with self; [ unittest2 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pylibconfig2 = buildPythonPackage rec {
|
||||||
|
name = "pylibconfig2-${version}";
|
||||||
|
version = "0.2.4";
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/p/pylibconfig2/${name}.tar.gz";
|
||||||
|
sha256 = "0kyg6gldj6hi2jhc5xhi834bb2mcaiy24dvfik963shnldqr7kqg";
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
propagatedBuildInputs = with self ; [ pyparsing ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/heinzK1X/pylibconfig2;
|
||||||
|
description = "Pure python library for libconfig syntax";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
pysftp = buildPythonPackage rec {
|
pysftp = buildPythonPackage rec {
|
||||||
name = "pysftp-${version}";
|
name = "pysftp-${version}";
|
||||||
version = "0.2.8";
|
version = "0.2.8";
|
||||||
|
|
Loading…
Reference in New Issue