Files
nixpkgs/pkgs/development/python-modules/potr/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

26 lines
494 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
pycrypto,
}:
buildPythonPackage rec {
pname = "python-potr";
version = "1.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "f95b9a7feaf8e3a6aaa898609f8a2ada55518cf52fc09152775c4c59c99b8ea6";
};
propagatedBuildInputs = [ pycrypto ];
meta = with lib; {
description = "Pure Python OTR implementation";
homepage = "http://python-otr.pentabarf.de/";
license = licenses.lgpl3Plus;
maintainers = [ ];
};
}