Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pyment / default.nix
blobfbf2c93fde6059005257ac877ad9ad21a3359431
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "pyment";
5   version = "0.3.3";
7   src = fetchPypi {
8     pname = "Pyment";
9     inherit version;
10     sha256 = "951a4c52d6791ccec55bc739811169eed69917d3874f5fe722866623a697f39d";
11   };
13   # Tests are not included in PyPI tarball
14   doCheck = false;
16   meta = with lib; {
17     homepage = "https://github.com/dadadel/pyment";
18     description = "Create, update or convert docstrings in existing Python files, managing several styles";
19     license = licenses.gpl3;
20     maintainers = with maintainers; [ jethro ];
21   };