Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / scripttest / default.nix
blobf61c1747e05951a12e7d6ce4e40bd852d10f5aeb
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytest
5 }:
7 buildPythonPackage rec {
8   pname = "scripttest";
9   version = "1.3";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "951cfc25219b0cd003493a565f2e621fd791beaae9f9a3bdd7024d8626419c38";
15   };
17   buildInputs = [ pytest ];
19   # Tests are not included. See https://github.com/pypa/scripttest/issues/11
20   doCheck = false;
22   meta = with lib; {
23     description = "A library for testing interactive command-line applications";
24     homepage = "https://pypi.org/project/scripttest/";
25     maintainers = with maintainers; [ ];
26     license = licenses.mit;
27   };