({ lib, buildPythonPackage, nix, git, autopep8, mypy, pylint, }:
buildPythonPackage rec {
pname = "pinch";
- version = "2.1.1";
+ version = "3.0.0-pre";
src = lib.cleanSource ./.;
checkInputs = [ nix git mypy ] ++ lib.optionals lint [ autopep8 pylint ];
doCheck = true;
from setuptools import setup
setup(
- name="pinch",
- version="2.1.1",
+ name='pinch',
+ version='3.0.0-pre',
py_modules=['pinch'],
- entry_points={"console_scripts": ["pinch = pinch:main"]},
+ entry_points={'console_scripts': ['pinch = pinch:main']},
)