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:
Lancelot SIX 2015-10-07 19:17:23 +00:00
parent 5d952d68de
commit 19f7cc8df2
1 changed files with 20 additions and 0 deletions

View File

@ -10369,6 +10369,26 @@ let
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 {
name = "pysftp-${version}";
version = "0.2.8";