Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / stubserver / default.nix
blob87b9cd988cce45a0dffe078e9fe2070ed668808c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "stubserver";
9   version = "1.1";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-j9R7wpvb07FuN5EhIpE7xTSf26AniQZN4iLpxMjNYKA=";
17   };
19   # Tests are not shipped and the source not tagged
20   doCheck = false;
22   pythonImportsCheck = [
23     "stubserver"
24   ];
26   meta = with lib; {
27     description = "Web and FTP server for use in unit and7or acceptance tests";
28     homepage = "https://github.com/tarttelin/Python-Stub-Server";
29     license = licenses.bsd2;
30     maintainers = with maintainers; [ fab ];
31   };