Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / cfgv / default.nix
blob0975d649a16726f4cfabf452819731c110051456
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchFromGitHub
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "cfgv";
10   version = "3.4.0";
11   format = "setuptools";
13   disabled = pythonOlder "3.8";
15   src = fetchFromGitHub {
16     owner = "asottile";
17     repo = "cfgv";
18     rev = "refs/tags/v${version}";
19     hash = "sha256-P02j53dltwdrlUBG89AI+P2GkXYKTVrQNF15rZt58jw=";
20   };
22   nativeCheckInputs = [
23     pytestCheckHook
24   ];
26   pythonImportsCheck = [
27     "cfgv"
28   ];
30   meta = with lib; {
31     description = "Validate configuration and produce human readable error messages";
32     homepage = "https://github.com/asottile/cfgv";
33     license = licenses.mit;
34     maintainers = with lib.maintainers; [ nickcao ];
35   };