Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / npyscreen / default.nix
blob1e93d54b3a298c5309a9028d4a8c3345b144aa93
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "npyscreen";
5   version = "4.10.5";
7   src = fetchPypi {
8    inherit pname version;
9    sha256 = "0vhjwn0dan3zmffvh80dxb4x67jysvvf1imp6pk4dsfslpwy0bk2";
10   };
12   # Tests are outdated
13   doCheck = false;
15   meta = with lib; {
16     description = "Framework for developing console applications using Python and curses";
17     homepage = "http://www.npcole.com/npyscreen/";
18     maintainers = with maintainers; [ dump_stack ];
19     license = licenses.bsd3;
20   };