ttaenc: init at 3.4.1 (#238757)
[NixPkgs.git] / pkgs / development / python-modules / scripttest / default.nix
bloba480429b6f31f0da98fc4c63623bf56a178bbd52
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pytest,
6 }:
8 buildPythonPackage rec {
9   pname = "scripttest";
10   version = "1.3";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "951cfc25219b0cd003493a565f2e621fd791beaae9f9a3bdd7024d8626419c38";
16   };
18   buildInputs = [ pytest ];
20   # Tests are not included. See https://github.com/pypa/scripttest/issues/11
21   doCheck = false;
23   meta = with lib; {
24     description = "Library for testing interactive command-line applications";
25     homepage = "https://pypi.org/project/scripttest/";
26     maintainers = [ ];
27     license = licenses.mit;
28   };