1 { lib, python3Packages, fetchPypi }:
5 buildPythonApplication rec {
10 inherit pname version;
11 sha256 = "15qdh8fby9xgfjxidcfv1xmrqqrxxapky7zmyn46qx1abhp9piax";
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.
22 sed -i 's/==.*//g' test-requirements.txt
23 sed -i 's/mock == 1.0.1/mock/g' setup.py
27 description = "Fast and Highly Extensible Vim script Language Lint implemented by Python";
28 homepage = "https://github.com/Kuniwak/vint";
29 license = licenses.mit;
32 platforms = platforms.all;