linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / expects / default.nix
blob093bdc27bf8407aea856ae7efaa1441ce562412b
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 }:
6 buildPythonPackage rec {
7   pname = "expects";
8   version = "0.9.0";
10   src = fetchFromGitHub {
11     owner = "jaimegildesagredo";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "0mk1mhh8n9ly820krkhazn1w96f10vmgh21y2wr44sn8vwr4ngyy";
15   };
17   # mamba is used as test runner. Not available and should not be used as
18   # it's just another unmaintained test runner.
19   doCheck = false;
20   pythonImportsCheck = [ "expects" ];
22   meta = with lib; {
23     description = "Expressive and extensible TDD/BDD assertion library for Python";
24     homepage = "https://expects.readthedocs.io/";
25     license = with licenses; [ asl20 ];
26     maintainers = with maintainers; [ fab ];
27   };