pythonPackages.configobj: Move to own file

This commit is contained in:
Elis Hirwing
2018-03-31 19:23:04 +02:00
committed by Frederik Rietdijk
parent ecc939eb19
commit bf363467f0
2 changed files with 24 additions and 21 deletions

View File

@@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi, six }:
buildPythonPackage rec {
pname = "configobj";
version = "5.0.6";
src = fetchPypi {
inherit pname version;
sha256 = "00h9rcmws03xvdlfni11yb60bz3kxfvsj6dg6nrpzj71f03nbxd2";
};
# error: invalid command 'test'
doCheck = false;
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
description = "Config file reading, writing and validation";
homepage = https://pypi.python.org/pypi/configobj;
license = licenses.bsd3;
maintainers = with maintainers; [ garbas ];
};
}