nixpkgs/pkgs/development/python-modules/cfgv/default.nix
R. RyanTM 67d5ba2f45 python37Packages.cfgv: 2.0.0 -> 2.0.1
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-08-05 02:08:51 -07:00

23 lines
519 B
Nix

{ lib, buildPythonPackage, fetchPypi, six }:
buildPythonPackage rec {
pname = "cfgv";
version = "2.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "0i1iam461bd6bphd402r7payr2m71xivy5zp6k2gjnv67fa8gczd";
};
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;
};
}