2020-06-16 21:45:50 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy27, six }:
|
2018-07-31 00:02:53 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cfgv";
|
2020-08-07 05:38:05 +01:00
|
|
|
version = "3.2.0";
|
2020-06-16 21:45:50 +01:00
|
|
|
disabled = isPy27;
|
2018-07-31 00:02:53 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-07 05:38:05 +01:00
|
|
|
sha256 = "cf22deb93d4bcf92f345a5c3cd39d3d41d6340adc60c78bbbd6588c384fda6a1";
|
2018-07-31 00:02:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
|
|
|
# Tests not included in PyPI tarball
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Validate configuration and produce human readable error messages";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/asottile/cfgv";
|
2018-07-31 00:02:53 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|