nixpkgs/pkgs/development/python-modules/cfgv/default.nix
R. RyanTM df2a755d67 python37Packages.cfgv: 1.4.0 -> 1.6.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-cfgv/versions
2019-04-15 15:29:47 -07:00

23 lines
519 B
Nix

{ lib, buildPythonPackage, fetchPypi, six }:
buildPythonPackage rec {
pname = "cfgv";
version = "1.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "1vxjwga8x9nn5xqbhf5sql7jab3s1la07mxbaqgcfjz8lpp2z7vf";
};
propagatedBuildInputs = [ six ];
# Tests not included in PyPI tarball
doCheck = false;
meta = with lib; {
description = "Validate configuration and produce human readable error messages";
homepage = https://github.com/asottile/cfgv;
license = licenses.mit;
};
}