ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / vi / vim-vint / package.nix
blob9ff37be205122bd1ae8dedd8763c97a2751d6d36
1 { lib, python3Packages, fetchPypi }:
3 with python3Packages;
5 buildPythonApplication rec {
6   pname = "vim-vint";
7   version = "0.3.21";
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "15qdh8fby9xgfjxidcfv1xmrqqrxxapky7zmyn46qx1abhp9piax";
12   };
14   # For python 3.5 > version > 2.7 , a nested dependency (pythonPackages.hypothesis) fails.
15   disabled = ! pythonAtLeast "3.5";
17   nativeCheckInputs = [ pytest pytest-cov ];
18   propagatedBuildInputs = [ ansicolor chardet pyyaml setuptools ];
20   # Unpin test dependency versions. This is fixed in master but not yet released.
21   preCheck = ''
22     sed -i 's/==.*//g' test-requirements.txt
23     sed -i 's/mock == 1.0.1/mock/g' setup.py
24   '';
26   meta = with lib; {
27     description = "Fast and Highly Extensible Vim script Language Lint implemented by Python";
28     homepage = "https://github.com/Kuniwak/vint";
29     license = licenses.mit;
30     mainProgram = "vint";
31     maintainers = [ ];
32     platforms = platforms.all;
33   };