evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / piep / default.nix
blob6fc53f1bec97820c938c3ce8fd460fc89af39fca
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6   pygments,
7   pytestCheckHook,
8 }:
10 buildPythonPackage rec {
11   version = "0.10.0";
12   pname = "piep";
13   pyproject = true;
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-aM7KQJZr1P0Hs2ReyRj2ItGUo+fRJ+TU3lLAU2Mu8KA=";
18   };
20   build-system = [ setuptools ];
22   dependencies = [ pygments ];
24   pythonImportsCheck = [ "piep" ];
26   nativeCheckInputs = [ pytestCheckHook ];
28   meta = with lib; {
29     description = "Bringing the power of python to stream editing";
30     homepage = "https://github.com/timbertson/piep";
31     maintainers = with maintainers; [ timbertson ];
32     license = licenses.gpl3Only;
33     mainProgram = "piep";
34   };