evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / cogapp / default.nix
blobc6f669c8ad569308725ceba8fab0a7c885e050d7
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "cogapp";
10   version = "3.4.1";
11   pyproject = true;
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-qAbV254xihotP86YgAgXkWjn2xPl5VsZt5dj+budKYI=";
16   };
18   nativeBuildInputs = [ setuptools ];
20   # there are no tests
21   doCheck = false;
23   meta = with lib; {
24     description = "Code generator for executing Python snippets in source files";
25     homepage = "https://nedbatchelder.com/code/cog";
26     license = licenses.mit;
27     maintainers = with maintainers; [ lovek323 ];
28   };