stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / python-modules / assertpy / default.nix
blobe45e59409c7244d5623f1c2435877133b62904a3
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "assertpy";
10   version = "1.1";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = pname;
15     repo = pname;
16     rev = version;
17     sha256 = "0hnfh45cmqyp7zasrllwf8gbq3mazqlhhk0sq1iqlh6fig0yfq2f";
18   };
20   nativeCheckInputs = [ pytestCheckHook ];
22   pythonImportsCheck = [ "assertpy" ];
24   meta = with lib; {
25     description = "Simple assertion library for unit testing with a fluent API";
26     homepage = "https://github.com/assertpy/assertpy";
27     license = licenses.bsd3;
28     maintainers = with maintainers; [ fab ];
29   };